MySQL where条件is null 及is not null 的用法

首先先了解is null 与 is not null 分别代表什么;is null 在查询中用于查询指定字段为null的数据、is not null 在查询中用于查询指定字段中不为null的数据(手动删除的无法查询);

语法为 select * from 数据表名称 where 字段名 is null / is not null

先看看原本数据表

MySQL where条件is null 及is not null 的用法_第1张图片

现在id为20的字段名为name的值为null

使用select * from cher where name is null 查询

MySQL where条件is null 及is not null 的用法_第2张图片

或使用select * from cher where name is not null查询其他字段名为name且不为空的值

MySQL where条件is null 及is not null 的用法_第3张图片

你可能感兴趣的:(mysql)