mysql 单表查询 空值查询
1,SELECT 字段 1,字段 2,字段 3...FROM 表名 WHERE 字段 IS [NOT] NULL;
eg:查询性别为空的学生信息
select * from t_student where sex is null;
eg:查询性别不为空的学生信息
select * from t_student where sex is not null;
mysql 单表查询 空值查询
1,SELECT 字段 1,字段 2,字段 3...FROM 表名 WHERE 字段 IS [NOT] NULL;
eg:查询性别为空的学生信息
select * from t_student where sex is null;
eg:查询性别不为空的学生信息
select * from t_student where sex is not null;