当前位置: 代码迷 >> Sql Server >> 删除行时分提示0行受影响
  详细解决方案

删除行时分提示0行受影响

热度:83   发布时间:2016-04-24 22:33:51.0
删除行时候提示0行受影响
delete from POP3 where username=null
我执行这跳语句。。数据库中有username为空的好多行。我想删除。。老是0行受影响。为什么啊?
触发器也没有。

------解决方案--------------------
delete from POP3 where username=null
修改为
delete from POP3 where username is null
------解决方案--------------------
null值是不能直接使用等号进行判断的
  相关解决方案