嵌套嵌套的唯一/唯一计数

时间:2018-11-17 21:51:21

标签: sql-server

我正在尝试更改表,创建不同的计数列并按周分组。 有任何想法吗?我不确定如何包装多个聚合?

Here is the table and desired result

在表格的前面和后面

1 个答案:

答案 0 :(得分:1)

我相信,在简单的分组查询中,

COUNT(distinct ...)应该可以工作

select week, theater, count(distinct person) as uniq_person
from yourtable
group by week, theater