3.WHERE中使用is null和is not null
//查询工资是null空值的人
select * from person where salary is null;
//查询工资不为null的人
select * from person where salary is not null;
时间: 2024-11-01 22:31:20
3.WHERE中使用is null和is not null
//查询工资是null空值的人
select * from person where salary is null;
//查询工资不为null的人
select * from person where salary is not null;