在group by时怎么去重统计

请问,count(distinct x)写法在group by语句下无法执行,请问还有别的方法可以做到去重统计吗?

比如,在DolphinDB database的GUI中执行下列语句:

t=table(3 2 2 3 3 4 as x,1 1 1 2 2 2 as code);
select count(distinct x ) from t group by code;

报错:
Can't call an aggregated function in the argument of another aggregated function call.但去掉其中的group by是可以的。

阅读 5.3k
2 个回答
可以尝试一下这个:select count(*) from (select (distinct x ) from t group by code,x) as t;

可用DolphinD中的nunique函数实现,此函数可计算向量中非重复值的个数。

select nunique( x ) from t group by code;
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进