过滤不等于空条目

时间:2013-11-15 15:44:19

标签: php sql

我有一个列,用于存储允许null的数字。

numbers栏中的示例条目:

numbers :
123
null
null
546
null

如何在SQL中提取非空条目?

1 个答案:

答案 0 :(得分:3)

使用IS运算符

select numbers 
from your_table
where numbers is not null and numbers <> ''