好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > MySQL null的一些易錯點

MySQL null的一些易錯點

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

依據(jù)null-values,MySQL的值為null的意思只是代表沒有數(shù)據(jù),null值和某種類型的零值是兩碼事,比如int類型的零值為0,字符串的零值為””,但是它們依然是有數(shù)據(jù)的,不是null.

我們在保存數(shù)據(jù)的時候,習(xí)慣性的把暫時沒有的數(shù)據(jù)記為null,表示當前我們無法提供有效的信息.

不過使用null但是時候,需要我們注意一些問題.對此MySQL文檔說明如下: problems-with-null

使用null的易錯點

下面我摘取MySQL官方給出的null的易錯點做講解.

對MySQL不熟悉的人很容易搞混null和零值

The concept of the NULL value is a common source of confusion for newcomers to SQL

比如下面這2句SQL產(chǎn)生的數(shù)據(jù)是獨立的

mysql> INSERT INTO my_table (phone) VALUES (NULL);
mysql> INSERT INTO my_table (phone) VALUES ('');

第一句SQL只是表示暫時不知道電話號碼是多少,第二句是電話號碼知道并且記錄為''

Both statements insert a value into the phone column, but the first inserts a NULL value and the second inserts an empty string. The meaning of the first can be regarded as “phone number is not known” and the meaning of the second can be regarded as “the person is known to have no phone, and thus no phone number.”

對null的邏輯判斷要單獨處理

對于是否為null的判斷必須使用專門的語法IS NULL,IS NOT NULL,IFNULL().

To help with NULL handling, you can use the IS NULL and IS NOT NULL operators and the IFNULL() function.

如果你使用=判斷,那么永遠是false

In SQL, the NULL value is never true in comparison to any other value, even NULL

To search for column values that are NULL, you cannot use an expr = NULL test. The following statement returns no rows, because expr = NULL is never true

比如你這樣寫,where后判斷的結(jié)果永不會是true:

SELECT * FROM my_table WHERE phone = NULL;

如果你使用null和其他數(shù)據(jù)做計算,那么結(jié)果永遠是null,除非MySQL文檔對某些操作做了額外的特殊說明

An expression that contains NULL always produces a NULL value unless otherwise indicated in the documentation for the operators and functions involved in the expression

例如:

mysql> SELECT NULL, 1+NULL, CONCAT('Invisible',NULL);
+------+--------+--------------------------+
| NULL | 1+NULL | CONCAT('Invisible',NULL) |
+------+--------+--------------------------+
| NULL |  NULL | NULL           |
+------+--------+--------------------------+
1 row in set (0.00 sec)

所以你要對null做邏輯判斷,還是乖乖的使用IS NULL

To look for NULL values, you must use the IS NULL test

對有null值的列做索引要額外預(yù)料到隱藏的細節(jié)

只有InnoDB,MyISAM,MEMORY 存儲引擎支持給帶有null值的列做索引

You can add an index on a column that can have NULL values if you are using the MyISAM, InnoDB, or MEMORY storage engine. Otherwise, you must declare an indexed column NOT NULL, and you cannot insert NULL into the column.

索引的長度會比普通索引大1,也就是略微耗內(nèi)存點

Due to the key storage format, the key length is one greater for a column that can be NULL than for a NOT NULL column.

對null值做分組,去重,排序會被特殊對待

和上文講的=null永遠是false相反,這時null 被認為是相等的.

When using DISTINCT, GROUP BY, or ORDER BY, all NULL values are regarded as equal.

對null排序會被特殊對待

null值要么被排在最前面,要么最后面

When using ORDER BY, NULL values are presented first, or last if you specify DESC to sort in descending order.

聚合操作時null被忽略

Aggregate (group) functions such as COUNT(), MIN(), and SUM() ignore NULL values

例如count(*)不會統(tǒng)計值為null的數(shù)據(jù).

The exception to this is COUNT(*), which counts rows and not individual column values. For example, the following statement produces two counts. The first is a count of the number of rows in the table, and the second is a count of the number of non-NULL values in the age column:

mysql> SELECT COUNT(*), COUNT(age) FROM person;

以上就是MySQL null的一些易錯點的詳細內(nèi)容,更多關(guān)于MySQL null的資料請關(guān)注腳本之家其它相關(guān)文章!

您可能感興趣的文章:
  • 為什么mysql字段要使用NOT NULL
  • MySQL中關(guān)于null值的一個小問題
  • MySQL null與not null和null與空值''''''''的區(qū)別詳解
  • MySQL IFNULL判空問題解決方案
  • 區(qū)分MySQL中的空值(null)和空字符('''')
  • 詳解mysql不等于null和等于null的寫法
  • Mysql NULL導(dǎo)致的神坑
  • mysql中null(IFNULL,COALESCE和NULLIF)相關(guān)知識點總結(jié)
  • 詳解mysql三值邏輯與NULL

標簽:珠海 拉薩 沈陽 移動 鹽城 徐州 沈陽 黔東

巨人網(wǎng)絡(luò)通訊聲明:本文標題《MySQL null的一些易錯點》,本文關(guān)鍵詞  MySQL,null,的,一些,易錯,點,;如發(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 null的一些易錯點》相關(guān)的同類信息!
  • 本頁收集關(guān)于MySQL null的一些易錯點的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 亚洲AV秘?精品久久人与人性| 动漫美女被虐吸奶| 性饥渴老太XxXxXHD| 两个丫头稚嫩紧窄小说| 脱了她裙子摸进她的内裤亲吻??| 91丨九色丨国产丨人妻网站| 正在播放黑人| 大bb| 91啦丨九色丨蚪窝人妻| 男女啪啪试看| 成人精品视频99在线观看免费| 久久久久一级片| 视频丨9l??丨白浆| 亚洲品质自拍| 好爽?好紧?再深一点动漫 | 女唐僧一级毛片| 娇小性色| 精品日韩在线观看| 亚洲综合偷自成人网第页色| 国产精品久久久久久日日游香| h版1995泰山未删减完整| 羞羞午夜男女爽爽成人影院一| 校霸乖乖女h文| 免费在线观看黄网| 秋霞一级伦理片| 欧洲一级毛片| 精品国产18久久久久久怡红| 亚洲综合激情另类图片专区| 国产精品久久久久孕妇| 邱淑贞慈禧的秘密生活国语| 欧美黄色一级片视频| 乱肉合集(二)小说| 欧美xx性在线| 啪啪福利视频| 乡下农村妇女一级毛片| 91视频中文字幕| 一二三四高清视频图片在线观看| 2018国精品夜夜天天拍| 国产AV精品国语对白河南小伙 | 免费网站成人??视频软件| 国产欧美一区二区三区特黄手机版|