1、is null :仅仅可以判断null值,可读性较高,建议使用。
select * from base_user where username is null
2、<=> :既可以判断null值,也可以判断普通的数值,可读性较低。
select * from base_user where username <=>null
删除还是替换删除
delete from table where column is null
替换
update table
set column=''
where column is null
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)