测试必备的Mysql常用sql语句,每天敲一篇,每次敲三遍,每月一循环,全都可记住!!
https://www.cnblogs.com/poloyy/category/1683347.html
两种写法:
IS NULL IS NOT NULL
select * from yyTest where sex is null;
select * from yyTest where sex is not null;
Mysql常用sql语句(10)- is null 空值查询
原文:https://www.cnblogs.com/poloyy/p/12859206.html