日期:2014-05-17  浏览次数:20700 次

求一个SQL语句,在线等~~~
如何找到一个表里的一个字段为空的所有记录?


------解决方案--------------------
select * from table where 字段 is null
------解决方案--------------------
select * from table where 字段 is null or trim(字段)= ' '