mysql 查询值为null的数据: is null 的使用

  • 是is null, 不是用"="
-- 查询手机号不为null的用户数据
SELECT * from user where phone is not null;
 
-- 查询手机号为null的用户数据
SELECT * from user where phone is null;
原文地址:https://www.cnblogs.com/pansidong/p/14158067.html