请参阅所附的图片,以查看我的数据。
我试图得到这样的结果:
SessionNumber | Event Date| Critical Care Count | Pulmonary Circulation
G1 | 5/19/2018 | 2 | 3
G1 | 5/20/2018 | 5 | 1
PCC1 | 5/19/2018 | 4 | 5
我正在计算各种主要的程序集、主题、每个sessionnumber的reg和eventdate。
这是我正在使用的查询:
select SessionNumber, EventDate, count(distinct BadgeID) as CriticalCareCount
from beacon
where primaryAssembly="Critical Care"
group by SessionNumber, EventDate
order by EventDate;
但我宁愿不用where子句。我想就这个词本身进行分组。以下是屏幕截图:
1条答案
按热度按时间xfyts7mz1#
数据透视查询有助于: