SQL语句查询是否为空=null及null
a                  b                            c            d
980515      精頂企業有限公司簡家豪      NULL
980514      全欣⽊業有限公司        NULL      123
980514      迅億科技股份有限公司簡逢浚      NULL
980515      聖越國際企業有限公司  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哦。
>sql查询语句实例大全

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。