SQL语句查询是否为空 =null及null
时间:2021-06-18 08:44:31|栏目:MsSql|点击: 次
a b c d
980515 精?企?I有限公司 ?家豪 NULL
980514 全欣木?I有限公司 NULL 123
980514 迅?|科技股份有限公司 ?逢浚 NULL
980515 ?}越???H企?I有限公司 NULL 111
表结构如上所示,要查询C列为空的记录的SQL语句不是select * from table where c=null; 或者 select * from table where c=''; 而应当是 select * from table where c is null; 相反地要查询不为空的则应当是 select * from talbe where c<>''; 或者 select * from table where c is not null; 注意:不是not is null哦。