mysql解决select * from 表名 (where + 约束条件为空),示例如下:
SELECT * from tableName WHERE name is NULL;
从 tableName 表中查询 name 字段为空的记录。