日期:2014-05-16  浏览次数:20840 次

如何用SQL语句判断一条记录每个字段是否全部都有数据,若全有就查询出来。
如何用SQL语句判断一条记录每个字段是否全部都有数据,若全有就查询出来。
表为TABLE1
字段位 A B C D

------解决方案--------------------
select *
from tb
where A is not null and B is not null and C is not null and D is not null;