我只想从一张桌子中选择一个城市,但是这个列包含空值我不会在我做不同的城市时进入专栏。
select distinct city from billingsystem
输出结果是
newyork
london
dallas
null
charles
我希望输出为
newyork
london
dallas
charles
任何人都可以帮我解决这个问题。
答案 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