• 是is null, 不是用"="
-- 查询手机号不为null的用户数据
SELECT * from user where phone is not null;
 
-- 查询手机号为null的用户数据
SELECT * from user where phone is null;
相信坚持的力量,日复一日的习惯.