执行select查询时出现空字段

时间:2014-01-01 10:41:56

标签: sql

我有表格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行空值。

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 = '';

试试这个......