主頁 > 知識庫 > 解決mysql使用not in 包含null值的問題

解決mysql使用not in 包含null值的問題

熱門標(biāo)簽:400電話鄭州申請 沃克斯電梯外呼線路圖 云南語音外呼系統(tǒng)平臺 天智外呼系統(tǒng) 常州電銷外呼系統(tǒng)一般多少錢 房產(chǎn)智能外呼系統(tǒng)品牌 地圖標(biāo)注被騙三百怎么辦 福州呼叫中心外呼系統(tǒng)哪家好 北京人工外呼系統(tǒng)價錢

注意?。。?/p>

select * from user where uid not in (a,b,c,null);

這個sql不回返回任何結(jié)果。要避免not in的list中出現(xiàn)null的情況。

另外:

–如果null參與算術(shù)運(yùn)算,則該算術(shù)表達(dá)式的值為null。(例如:+,-,*,/ 加減乘除)

–如果null參與比較運(yùn)算,則結(jié)果可視為false。(例如:>=,=,> 大于,小于,不等于)

–如果null參與聚集運(yùn)算,則聚集函數(shù)都置為null(使用isnull(字段,0)等方式可以避免這種情況)。除count(*), count(1), count(0)等之外(count(字段) 字段為null的行不參與計數(shù))。

--如果在not in子查詢中有null值的時候,則不會返回數(shù)據(jù)。

補(bǔ)充:MySQL in,not in,exists,not exists與null的恩恩怨怨

null這個東西在數(shù)據(jù)里算是個奇葩,在比較中也比較特殊,下面記錄總結(jié)一下在in,not in,exists,not exists中null對判斷結(jié)果的影響。

做一些描述聲明,在比較符左邊的我們稱為左比較符,在比較符右邊的我們稱為右比較符,例如1 in (1,2),那么in左邊的1是左比較符,in右邊的(1,2)是右比較符。

1.in

1.1當(dāng)左比較符是null,任何情況下都返回null。

mysql> select null in (1,2);
+---------------+
| null in (1,2) |
+---------------+
|   NULL |
+---------------+
1 row in set (0.00 sec)

mysql> select null in (1,2,null);
+--------------------+
| null in (1,2,null) |
+--------------------+
|    NULL |
+--------------------+
1 row in set (0.00 sec)

1.2當(dāng)右比較符包含null,只當(dāng)左比較符不為null,且右比較符包含左比較符時,返回1,其他情況均返回null。

mysql> select null in (1,2,null);
+--------------------+
| null in (1,2,null) |
+--------------------+
|    NULL |
+--------------------+
1 row in set (0.00 sec)

mysql> select 3 in (1,2,null);
+-----------------+
| 3 in (1,2,null) |
+-----------------+
|   NULL |
+-----------------+
1 row in set (0.00 sec)

mysql> select 1 in (1,2,null);
+-----------------+
| 1 in (1,2,null) |
+-----------------+
|    1 |
+-----------------+
1 row in set (0.00 sec)

2.not in

2.1當(dāng)左比較符為null,任何情況都返回null。

mysql> select null not in (1,2,null);
+------------------------+
| null not in (1,2,null) |
+------------------------+
|     NULL |
+------------------------+
1 row in set (0.00 sec)

mysql> select null not in (1,2);
+-------------------+
| null not in (1,2) |
+-------------------+
|    NULL |
+-------------------+
1 row in set (0.00 sec)

2.2當(dāng)右比較符包含null,當(dāng)右比較符包含左比較符時返回0,其他情況均返回null。

mysql> select 1 not in (1,2,null);
+---------------------+
| 1 not in (1,2,null) |
+---------------------+
|     0 |
+---------------------+
1 row in set (0.00 sec)

mysql> select 1 not in (2,3,null); 
+---------------------+
| 1 not in (2,3,null) |
+---------------------+
|    NULL |
+---------------------+
1 row in set (0.00 sec)

3.exists

exists子查詢返回null時判斷為真。

mysql> select exists (select null);
+----------------------+
| exists (select null) |
+----------------------+
|     1 |
+----------------------+
1 row in set (0.00 sec)

4.not exists

not exists子查詢返回null時判斷為假。

mysql> select not exists (select null);
+--------------------------+
| not exists (select null) |
+--------------------------+
|      0 |
+--------------------------+
1 row in set (0.00 sec)

以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。如有錯誤或未考慮完全的地方,望不吝賜教。

您可能感興趣的文章:
  • 為什么mysql字段要使用NOT NULL
  • 解決從集合運(yùn)算到mysql的not like找不出NULL的問題
  • MySQL null與not null和null與空值''''''''的區(qū)別詳解
  • MySQL中建表時可空(NULL)和非空(NOT NULL)的用法詳解
  • MySQL中NOT IN填坑之列為null的問題解決
  • MySQL中可為空的字段設(shè)置為NULL還是NOT NULL
  • MySQL查詢空字段或非空字段(is null和not null)
  • mysql not in、left join、IS NULL、NOT EXISTS 效率問題記錄
  • MySQL非空約束(not null)案例講解

標(biāo)簽:移動 黔東 徐州 鹽城 珠海 拉薩 沈陽 沈陽

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《解決mysql使用not in 包含null值的問題》,本文關(guān)鍵詞  解決,mysql,使用,not,包含,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《解決mysql使用not in 包含null值的問題》相關(guān)的同類信息!
  • 本頁收集關(guān)于解決mysql使用not in 包含null值的問題的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章