我有表格tableq
,列可以说; a,b,c,d,e,f。在列f
中,允许使用空值,其中f
列中有一些空字段。
现在我想选择f
为空的a,b,c,d,e列。像这样:
select a, b, c, d, e from tableq where f isnull
但是当我运行查询时返回空字段,而f列中有3行空值。
答案 0 :(得分:0)
请在space
中提及isnull
,如:
select a, b, c, d, e from tableq where f is null
答案 1 :(得分:0)
select A,B,C,D,E from tableq where F IS NULL
这对我有用
答案 2 :(得分:0)
select a, b, c, d, e from tableq where f is null or f = '';
试试这个......