欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql 中存在null和空时创建唯一索引的方法

程序员文章站 2024-02-29 22:00:28
好多情况下数据库默认值都有null,但是经过程序处理很多时候会出现,数据库值为空而不是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了