mysql中查询字段为null或者不为nullmysql
在mysql中,查询某字段为空时,切记不可用 = null或 !=nullsql
如如下语句是错的,不会查出该字段为空的记录spa
select * from table where column != null;orm
正确应该为it
select * from table where column is not null;table