裏ブログ

家族には内緒のブログ

SQL 集計する

2006-04-10 00:56:19 | DB
select A
,sum(REC) over(partition by A) sum1
,B
,sum(REC) over(partition by A,B) sum2
,C
,sum(REC) over(partition by A,B,C) sum3
from
TABLE
;