mysql 中存在null和空時創立獨一索引的辦法。本站提示廣大學習愛好者:(mysql 中存在null和空時創立獨一索引的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是mysql 中存在null和空時創立獨一索引的辦法正文
很多多少情形下數據庫默許值都有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了