count(distinct xxx) 与distinct ; count(case when )

来源:互联网 发布:网络实名制 人民日报 编辑:程序博客网 时间:2024/05/21 14:48

select a,b,c

select a,b,distinct c   不对 distinct必须是对所有字段排重,必须写在外面。

select distinct a,b,c



第二种   也叫转置   主要理解意思

select a,count(distinct b) ....group by a

按照a,汇总不同的b。



1    1

1    2

1    3

1    2

汇总后:

1   3


count(distinct case when time_measure = '>1' then ISR else null end)   去排重 汇总

sum(case when time_measure = '>1' then 1 else 0 end )  汇总不排重