小包子是一只聪明喵喵~
12345
-- 查询手机号不为null的用户数据mysql> SELECT * from user where phone is not null;-- 查询手机号为null的用户数据mysql> SELECT * from user where phone is null;