如何从SQL中的表的不同列中删除空值?

时间:2014-03-03 07:59:06

标签: sql

我只想从一张桌子中选择一个城市,但是这个列包含空值我不会在我做不同的城市时进入专栏。

select distinct city from billingsystem 

输出结果是

newyork
london
dallas
null 
charles

我希望输出为

newyork 
london 
dallas
charles

任何人都可以帮我解决这个问题。

3 个答案:

答案 0 :(得分:1)

使用此

select distinct city from billingsystem  where city is not null

答案 1 :(得分:1)

给定的查询是正确的

它仅用于选择不同值的Distinct关键字,在我们提到的条件中,如IS NOT NULL条件,所以从这里你可以得到确切的答案。

select distinct city 
from billingsystem  
where city is not null

答案 2 :(得分:0)

请尝试以下查询

select distinct city from billingsystem  where city is not null