distinct与NULL在count的注意事项

Posted 落忆无痕

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了distinct与NULL在count的注意事项相关的知识,希望对你有一定的参考价值。

select * from errorinfo
select count(1) from errorinfo
select distinct info from errorinfo
select count(distinct info) from errorinfo

distinct 会将所有NULL合并为一项

count(distinct)会将NULL除去。

 

select count(distinct info), info from errorinfo group by info

 

 

null不参与count运算,同样适用于sum, avg。

distinct时,所有null作为一个值。

 

以上是关于distinct与NULL在count的注意事项的主要内容,如果未能解决你的问题,请参考以下文章

Hive count(distinct c1) ,不包含NULL的总数

hive mysql count distinct 多列

COUNT(DISTINCT) 的百分位数与相关 WHERE 仅适用于视图(或没有 DISTINCT)

SQL COUNT DISTINCT 函数

2018-07-10聚合函数+比较条件+''和NULL+DISTINCT+ORDER BY+LIMIT+GROUP BY

mongo中的高级查询之聚合操作(distinct,count,group)与数据去重