null 字段的判断|学习笔记

发者学堂课程【MySQL 数据库入门学null 字段的判断习笔记,与课程紧密联系,让用户快速学习知识。

课程地址https://developer.aliyun.com/learning/course/451/detail/5574


null 字段的判断


null 的判断-is/is not

null 是一种特殊的情况,在判断某一列的值是否为 null 时,不可以使用等号和不等号进行判断。

select*from table_name where col_name is null

select*from table_name where col_name is not null

演示:

Database  changed

Mysql> select . from book

Id title content

4 rows in set (0.04  sec)

 

在 mysql 中值为 null 时无法用等号筛选

Mysql>select . from book where id=null

Empty set (0.04 sec)

 

通过 is null、is not null 来筛选

 

总结:

判断值是否为 null 只 能使用关键字 is null 和 is not null。

上一篇:React使用TS模板脚手架报错:声明了“ React”,但从未读取其值


下一篇:面向对象理论总结