SQL语句怎么查询某列为空(空符合所有属性)和一列固定值的数据??

2024-12-22 18:11:24
推荐回答(4个)
回答1:

select * from 表名 where CSex='男' and CLevel='部长' and CGrade is null

回答2:

某列为空(空符合所有属性)符合所有属性了的,那就不需要把它作为条件了的.

回答3:

select * from table_name where CSex='男' and CGrade is null and CLevel='部长'

回答4:

没必要写这个条件啊 CGrade=null 把这个去掉就是你要的数据