這是因為插入空字串意味著我們正在插入一些值而不是 NULL。空字串顯然映射到零作為整數。換句話說,我們可以說,透過插入空字串,我們向 MySQL 提供了一個整數表示為 INT 0 的值。考慮以下範例,其中我們插入了一個空字串,並被 MySQL 映射為 0。
mysql> create table test(id int NOT NULL, Name Varchar(10)); Query OK, 0 rows affected (0.19 sec) mysql> Insert into test(id, name) values('1', 'Gaurav'),('0','Rahul'),('','Aarav'); Query OK, 3 rows affected, 1 warning (0.08 sec) Records: 3 Duplicates: 0 Warnings: 1 mysql> Select * from test; +----+--------+ | id | Name | +----+--------+ | 1 | Gaurav | | 0 | Rahul | | 0 | Aarav | +----+--------+ 3 rows in set (0.00 sec)
以上是為什麼每當我將空字串插入宣告為 NOT NULL 的 MySQL 欄位時,它顯示 0 而不是空字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!