Mysql NULL導(dǎo)致的神坑
比較運(yùn)算符中使用NULL
mysql> select 1>NULL; +--------+ | 1>NULL | +--------+ | NULL | +--------+ 1 row in set (0.00 sec) mysql> select 1<NULL; +--------+ | 1<NULL | +--------+ | NULL | +--------+ 1 row in set (0.00 sec) mysql> select 1<>NULL; +---------+ | 1<>NULL | +---------+ | NULL | +---------+ 1 row in set (0.00 sec) mysql> select 1>NULL; +--------+ | 1>NULL | +--------+ | NULL | +--------+ 1 row in set (0.00 sec) mysql> select 1<NULL; +--------+ | 1<NULL | +--------+ | NULL | +--------+ 1 row in set (0.00 sec) mysql> select 1>=NULL; +---------+ | 1>=NULL | +---------+ | NULL | +---------+ 1 row in set (0.00 sec) mysql> select 1<=NULL; +---------+ | 1<=NULL | +---------+ | NULL | +---------+ 1 row in set (0.00 sec) mysql> select 1!=NULL; +---------+ | 1!=NULL | +---------+ | NULL | +---------+ 1 row in set (0.00 sec) mysql> select 1<>NULL; +---------+ | 1<>NULL | +---------+ | NULL | +---------+ 1 row in set (0.00 sec) mysql> select NULL=NULL,NULL!=NULL; +-----------+------------+ | NULL=NULL | NULL!=NULL | +-----------+------------+ | NULL | NULL | +-----------+------------+ 1 row in set (0.00 sec) mysql> select 1 in (null),1 not in (null),null in (null),null not in (null); +-------------+-----------------+----------------+--------------------+ | 1 in (null) | 1 not in (null) | null in (null) | null not in (null) | +-------------+-----------------+----------------+--------------------+ | NULL | NULL | NULL | NULL | +-------------+-----------------+----------------+--------------------+ 1 row in set (0.00 sec) mysql> select 1=any(select null),null=any(select null); +--------------------+-----------------------+ | 1=any(select null) | null=any(select null) | +--------------------+-----------------------+ | NULL | NULL | +--------------------+-----------------------+ 1 row in set (0.00 sec) mysql> select 1=all(select null),null=all(select null); +--------------------+-----------------------+ | 1=all(select null) | null=all(select null) | +--------------------+-----------------------+ | NULL | NULL | +--------------------+-----------------------+ 1 row in set (0.00 sec)
結(jié)論:任何值和NULL使用運(yùn)算符(>、<、>=、<=、!=、<>)或者(in、not in、any/some、all)比較時(shí),返回值都為NULL,NULL作為布爾值的時(shí)候,不為1也不為0。
準(zhǔn)備數(shù)據(jù)
mysql> create table test1(a int,b int); Query OK, 0 rows affected (0.01 sec) mysql> insert into test1 values (1,1),(1,null),(null,null); Query OK, 3 rows affected (0.00 sec) Records: 3 Duplicates: 0 Warnings: 0 mysql> select * from test1; +------+------+ | a | b | +------+------+ | 1 | 1 | | 1 | NULL | | NULL | NULL | +------+------+ 3 rows in set (0.00 sec)
上面3條數(shù)據(jù),認(rèn)真看一下,特別是注意上面NULL的記錄。
IN、NOT IN和NULL比較
IN和NULL比較
mysql> select * from test1; +------+------+ | a | b | +------+------+ | 1 | 1 | | 1 | NULL | | NULL | NULL | +------+------+ 3 rows in set (0.00 sec) mysql> select * from test1 where a in (null); Empty set (0.00 sec) mysql> select * from test1 where a in (null,1); +------+------+ | a | b | +------+------+ | 1 | 1 | | 1 | NULL | +------+------+ 2 rows in set (0.00 sec)
結(jié)論:當(dāng)IN和NULL比較時(shí),無法查詢出為NULL的記錄。
NOT IN 和NULL比較
mysql> select * from test1 where a not in (1); Empty set (0.00 sec) mysql> select * from test1 where a not in (null); Empty set (0.00 sec) mysql> select * from test1 where a not in (null,2); Empty set (0.00 sec) mysql> select * from test1 where a not in (2); +------+------+ | a | b | +------+------+ | 1 | 1 | | 1 | NULL | +------+------+ 2 rows in set (0.00 sec)
結(jié)論:當(dāng)NOT IN 后面有NULL值時(shí),不論什么情況下,整個(gè)sql的查詢結(jié)果都為空。
EXISTS、NOT EXISTS和NULL比較
mysql> select * from test2; +------+------+ | a | b | +------+------+ | 1 | 1 | | 1 | NULL | | NULL | NULL | +------+------+ 3 rows in set (0.00 sec) mysql> select * from test1 t1 where exists (select * from test2 t2 where t1.a = t2.a); +------+------+ | a | b | +------+------+ | 1 | 1 | | 1 | NULL | +------+------+ 2 rows in set (0.00 sec) mysql> select * from test1 t1 where not exists (select * from test2 t2 where t1.a = t2.a); +------+------+ | a | b | +------+------+ | NULL | NULL | +------+------+ 1 row in set (0.00 sec)
上面我們復(fù)制了表test1創(chuàng)建了表test2。
查詢語句中使用exists、not exists對比test1.a=test2.a,因?yàn)?不能比較NULL,結(jié)果和預(yù)期一致。
判斷NULL只能用IS NULL、IS NOT NULL
mysql> select 1 is not null; +---------------+ | 1 is not null | +---------------+ | 1 | +---------------+ 1 row in set (0.00 sec) mysql> select 1 is null; +-----------+ | 1 is null | +-----------+ | 0 | +-----------+ 1 row in set (0.00 sec) mysql> select null is null; +--------------+ | null is null | +--------------+ | 1 | +--------------+ 1 row in set (0.00 sec) mysql> select null is not null; +------------------+ | null is not null | +------------------+ | 0 | +------------------+ 1 row in set (0.00 sec)
看上面的效果,返回的結(jié)果為1或者0。
結(jié)論:判斷是否為空只能用IS NULL、IS NOT NULL。
聚合函數(shù)中NULL的坑
示例
mysql> select count(a),count(b),count(*) from test1; +----------+----------+----------+ | count(a) | count(b) | count(*) | +----------+----------+----------+ | 2 | 1 | 3 | +----------+----------+----------+ 1 row in set (0.00 sec)
- count(a)返回了2行記錄,a字段為NULL的沒有統(tǒng)計(jì)出來。
- count(b)返回了1行記錄,為NULL的2行記錄沒有統(tǒng)計(jì)出來。
- count(*)可以統(tǒng)計(jì)所有數(shù)據(jù),不論字段的數(shù)據(jù)是否為NULL。
再繼續(xù)看
mysql> select * from test1 where a is null; +------+------+ | a | b | +------+------+ | NULL | NULL | +------+------+ 1 row in set (0.00 sec) mysql> select count(a) from test1 where a is null; +----------+ | count(a) | +----------+ | 0 | +----------+ 1 row in set (0.00 sec)
上面第1個(gè)sql使用is null查詢出了結(jié)果,第2個(gè)sql中count(a)返回的是0行。
結(jié)論:count(字段)無法統(tǒng)計(jì)字段為NULL的值,count(*)可以統(tǒng)計(jì)值為null的行。
NULL不能作為主鍵的值
mysql> create table test3(a int primary key,b int); Query OK, 0 rows affected (0.01 sec) mysql> insert into test3 values (null,1); ERROR 1048 (23000): Column 'a' cannot be null
上面我們創(chuàng)建了一個(gè)表test3,字段a未指定不能為空,插入了一條NULL的數(shù)據(jù),報(bào)錯(cuò)原因:a 字段的值不能為NULL,我們看一下表的創(chuàng)建語句:
mysql> show create table test3; +-------+------------+ | Table | Create Table | +-------+------------+ | test3 | CREATE TABLE `test3` ( `a` int(11) NOT NULL, `b` int(11) DEFAULT NULL, PRIMARY KEY (`a`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 +-------+------------+ 1 row in set (0.00 sec)
從上面的腳本可以看出,當(dāng)字段為主鍵的時(shí)候,字段會(huì)自動(dòng)設(shè)置為not null。
結(jié)論:當(dāng)字段為主鍵的時(shí)候,字段會(huì)自動(dòng)設(shè)置為not null。
看了上面這些還是比較暈,NULL的情況確實(shí)比較難以處理,容易出錯(cuò),最有效的方法就是避免使用NULL。所以,強(qiáng)烈建議創(chuàng)建字段的時(shí)候字段不允許為NULL,設(shè)置一個(gè)默認(rèn)值。
總結(jié)
- NULL作為布爾值的時(shí)候,不為1也不為0
- 任何值和NULL使用運(yùn)算符(>、<、>=、<=、!=、<>)或者(in、not in、any/some、all),返回值都為NULL
- 當(dāng)IN和NULL比較時(shí),無法查詢出為NULL的記錄
- 當(dāng)NOT IN 后面有NULL值時(shí),不論什么情況下,整個(gè)sql的查詢結(jié)果都為空
- 判斷是否為空只能用IS NULL、IS NOT NULL
- count(字段)無法統(tǒng)計(jì)字段為NULL的值,count(*)可以統(tǒng)計(jì)值為null的行
- 當(dāng)字段為主鍵的時(shí)候,字段會(huì)自動(dòng)設(shè)置為not null
- NULL導(dǎo)致的坑讓人防不勝防,強(qiáng)烈建議創(chuàng)建字段的時(shí)候字段不允許為NULL,給個(gè)默認(rèn)值
到此這篇關(guān)于Mysql NULL導(dǎo)致的神坑的文章就介紹到這了,更多相關(guān)Mysql NULL導(dǎo)致坑內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
mysql 5.7.13 安裝配置方法圖文教程(linux)
這篇文章主要為大家詳細(xì)介紹了linux下mysql 5.7.13 安裝配置方法圖文教程,感興趣的小伙伴們可以參考一下2016-06-06LEFT JOIN條件在on后面和在where后面的區(qū)別及說明
這篇文章主要介紹了LEFT JOIN條件在on后面和在where后面的區(qū)別及說明,具有很好的參考價(jià)值,希望對大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-09-09mysql函數(shù)拼接查詢concat函數(shù)的使用方法
下面小編就為大家?guī)硪黄猰ysql函數(shù)拼接查詢concat函數(shù)的使用方法。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2017-08-08MySQL報(bào)錯(cuò)ERROR?2002?(HY000):?Canot?connect?to?local?MyS
ERROR?2002是一個(gè)常見的錯(cuò)誤,這可能會(huì)阻礙數(shù)據(jù)庫的正常使用,本文就來介紹一下該錯(cuò)誤的解決方法,具有一定的參考價(jià)值,感興趣的可以了解一下2024-07-07Linux 安裝JDK Tomcat MySQL的教程(使用Mac遠(yuǎn)程訪問)
這篇文章主要介紹了Linux 安裝JDK Tomcat MySQL(使用Mac遠(yuǎn)程訪問),本文圖文并茂給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2018-06-06mysql8.0.11 winx64安裝配置方法圖文教程(win10)
這篇文章主要為大家詳細(xì)介紹了win10下mysql8.0.11 winx64安裝配置方法圖文教程,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-05-053種高效的Tags標(biāo)簽系統(tǒng)數(shù)據(jù)庫設(shè)計(jì)方案分享
這篇文章主要介紹了3種高效的Tags標(biāo)簽系統(tǒng)數(shù)據(jù)庫設(shè)計(jì)方案分享,現(xiàn)在主流的博客、CMS系統(tǒng)都有一個(gè)標(biāo)簽系統(tǒng),本文就探討它的數(shù)據(jù)庫設(shè)計(jì)方式,需要的朋友可以參考下2014-07-07