标题: 如何查找到表1中字段a、b、c、d、e中无日期的方法 [打印本页] 作者: zyx111 时间: 2007-6-27 07:58 标题: 如何查找到表1中字段a、b、c、d、e中无日期的方法 [attach]25130[/attach]
各位大哥,小弟不会编程序!作者: djt 时间: 2007-6-27 16:48
select *
from 表1
where isnull(a) or isnull(b) or isnull(c) or isnull(d) or isnull(e)
作者: 一点通 时间: 2007-6-27 16:49
SELECT 表1.name, 表1.a
FROM 表1
WHERE (((表1.a) Is Null)); 作者: andymark 时间: 2007-6-27 17:02
Is Null