mysql经典问题(MySQL null的一些易错点)
mysql经典问题
MySQL null的一些易错点依据null-values,MySQL的值为null的意思只是代表没有数据,null值和某种类型的零值是两码事,比如int类型的零值为0,字符串的零值为””,但是它们依然是有数据的,不是null.
我们在保存数据的时候,习惯性的把暂时没有的数据记为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产生的数据是独立的
|
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后判断的结果永不会是true:
|
SELECT * FROM my_table WHERE phone = NULL ; |
如果你使用null和其他数据做计算,那么结果永远是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值的列做索引要额外预料到隐藏的细节
只有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,也就是略微耗内存点
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(*)不会统计值为null的数据.
The exception to this is COUNT(*), which counts rows and not inliidual 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的一些易错点的详细内容,更多关于MySQL null的资料请关注开心学习网其它相关文章!
原文链接:https://www.omoz.cc/2020/12/11/MySQL%20null%E7%9A%84%E5%AD%A6%E9%97%AE/#null
- mysql8.0详解(MySQL 8.0 的 5 个新特性,太实用了!)
- php7用什么替代mysql(mysqli扩展无法在PHP7下升级问题的解决)
- linux系统登录mysql数据库(Linux手动部署远程的mysql数据库的方法详解)
- mysql行级锁使用教程(浅析MySQL的lru链表)
- phpstudymysql数据库启动不了(phpstudy mysql启动不了的解决方法)
- MySQL与Oracle数据类型对应关系
- mysql查询慢有哪些原因(MySQL 查询速度慢的原因)
- docker 镜像mysql(解决docker拉取mysql镜像太慢的情况)
- mysql索引优化技巧(MySQL如何优化索引)
- win10安装mysql8.0如何启动(win10下mysql 8.0.23 安装配置方法图文教程)
- mysql账户访问权限(MySQL 权限控制详解)
- mysql怎么删除用户操作(解决mysql删除用户 bug的问题)
- mysql子查询用法(MySQL 子查询和分组查询)
- 怎样查看mysql的ddl窗口(详解MySQL8.0原子DDL语法)
- mysql是自动commit吗(详解MySQL与Spring的自动提交autocommit)
- 怎么查看mysql异常链接(MySQL 查看链接及杀掉异常链接的方法)
- 马来西亚旅游攻略(马来西亚旅游攻略自由行攻略)
- 缅甸旅游攻略(缅甸旅游攻略必去景点推荐)
- 《庆余年2》新消息,原班人马,肖战特别出演,这才是最好的安排(庆余年2新消息原班人马)
- 宁夏灵武恐龙化石发现始末(宁夏灵武恐龙化石发现始末)
- 到了岁末 临门一脚 节点,天台综合督评会目标直指 全年红(到了岁末临门一脚)
- 寒假余额不满24小时,不如来一场说走就走的亲子阅读之旅(寒假余额不满24小时)
热门推荐
- linux hadoop client 连接hbase(使用docker部署hbase的方法)
- 虚拟主机与空间有什么区别(全能主机是什么意思?全能虚拟主机好用吗?)
- django数据库查询条件(djang常用查询SQL语句的使用代码)
- mysql中null的用法(为什么mysql字段要使用NOT NULL)
- 阿里云服务器端口和ip(阿里云服务器如何添加安全通信端口?)
- phpstudy安装包打不开(phpStudy访问速度慢和启动失败的解决办法)
- css3动画360循环旋转(利用纯CSS3实现文字向右循环闪过效果实例可用于移动端)
- navicat怎么导入sql数据库文件(Navicat导出.sql文件方法)
- ftp上传文件权限设置(FTP二进制上传是什么意思?设置并使用二进制BINARY上传?)
- idea 部署到tomcat 的项目在哪儿(使用IDEA创建Web项目并发布到tomcat的操作方法)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9