mysql解决select * from 表名 (where + 约束条件为空)

mysql解决select * from 表名 (where + 约束条件为空),示例如下:

SELECT * from tableName WHERE name is NULL;

从 tableName 表中查询 name 字段为空的记录。

原文地址:https://www.cnblogs.com/zrmw/p/9887655.html