好多情況下資料庫預設值都有null,但是經過程式處理很多時候會出現,資料庫值為空白而不是null的情況。此時建立唯一索引時要注意了,此時資料庫會把空作為多個重複值,而建立索引失敗,樣本如下:
步驟1:
mysql> select phone ,count(1) from User group by phone;
+-----------------+----------+
| phone | count(1) |
+-----------------+----------+
| NULL | 70 |
| | 40 |
| +86-13390889711 | 1 |
| +86-13405053385 | 1 |
步驟一中探索資料庫中有70條null資料,有40條為空白的資料。
步驟2:
mysql> select count(1) from User where phone is null;
+----------+
| count(1) |
+----------+
| 70 |
+----------+
1 row in set (0.00 sec)
經2再次驗證資料庫中null和空不一樣的兩個值。
步驟3:
mysql> alter table User add constraint uk_phone unique(phone);
ERROR 1062 (23000): Duplicate entry '' for key 'uk_phone'
此時建立索引提示‘ '為一個重複的屬性。
步驟4:將所有的空值改成null
mysql> update User set phone = NULL where phone = '';
Query OK, 40 rows affected (0.11 sec)
Rows matched: 40 Changed: 40 Warnings: 0
步驟5:再次建立唯一索引
mysql> alter table User add constraint uk_phone unique(phone);
Query OK, 0 rows affected (0.34 sec)
Records: 0 Duplicates: 0 Warnings: 0
建立成功,OK了