티스토리 뷰

공부/SQL

count over partition by

감성윤 2016. 4. 18. 16:09


select 

알파
,날짜
,count(1)over(partition by 날짜)"알파별 날짜별 소계"
,count(1)over(partition by 알파)"알파별 소계"
,count(1)over()"총계" 
from 테이블이름;


댓글