MySQL中唯⼀性约束下能否有空值,空字符串
*问题 1*
⾸先,需要搞清楚 “空字符串” 和”NULL”的概念:
1:空字符串(”)是不占⽤空间的
2: MySQL中的NULL其实是占⽤空间的。官⽅⽂档说明:
NULL columns require additional space in the row to record whether their values are NULL. For MyISAM tables, each NULL column takes one bit extra, rounded up to the nearest byte.
长度验证:注意空值的”之间是没有空格的。
select length(''),length(null),length(' ');
+------------+--------------+-------------+
| length('') | length(null) | length(' ') |
+------------+--------------+-------------+
|          0 |        NULL |          1 |
+------------+--------------+-------------+
准备数据:
create table abc(
-> id int(10) primary key,
-> c varchar(10) unique default '');  # 主要是为了测试唯⼀性约束下是否能存在重复的 Null,还有空字符串
 insert into abc value(1,Null);
insert into abc value(2,'');
 insert into abc value(3,'Null');
问题2:查询⾮空字段的两种⽅法的区别:
1、select * from tablename where columnname <> ‘’
select * from abc where c <> '';  # 确实存在的字符串或者数据
+----+------+
| id | c    |
+----+------+
|  3 | Null |
+----+------+
空字符串是什么
2、select * from tablename where column is not null
select * from abc where c is not null;
+----+------+
| id | c    |
+----+------+
|  2 |      |
|  3 | Null |
+----+------+
插⼊⼆次数据
mysql> insert into abc value(4,'');
ERROR 1062 (23000): Duplicate entry '' for key 'c'
# 说明有唯⼀性约束的情况下不能有重复的空字符串
 mysql> insert into abc value(5,Null);
 Query OK, 1 row affected (0.05 sec)
 # 可以有重复的空值Null
**主键和唯⼀键约束是通过参考索引实施的,如果插⼊的值均为NULL,则根据索引的原理,全NULL值不被记录在索引上,所以插⼊全NULL值时,可以有重复的,⽽其他的则不能插⼊重复值## ⼩结:
1、NULL其实并不是空值,⽽是要占⽤空间,所以MySQL在进⾏⽐较的时候,NULL会参与字段⽐较,所以对效率有⼀部分影响。
⽽且对表索引时不会存储NULL值的,所以如果索引的字段可以为NULL,索引的效率会下降很多
2、空值不⼀定为空
对于MySQL特殊的注意事项,对于timestamp数据类型,如果往这个数据类型插⼊的列插⼊NULL值,则出现的值是当前系统时间。插⼊空值,则会出现 ‘0000-00-00 00:00:00’
参考:blog.csdn/yu757371316/article/details/53033118

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。