开发者学堂课程【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。