샘플 데이터 생성
create table sales (
product_id varchar(5),
month date,
revenue numeric
);
insert into sales
select 'P'||LPAD(cast(row_number() over() as text), 3, '0')
, DATE '2020-01-01' + interval '1 month' * ((random()*10)::integer)
, cast(random()*100000 as integer)
from generate_series(1,100);
select *
from sales ;

Group by
group by
select product_id, month, sum(revenue)
from sales
group by product_id, month
order by product_id;

group by rollup
select product_id, month, sum(revenue)
from sales
group by rollup(product_id, month)
order by product_id, month;

group by cube
select product_id, month, sum(revenue)
from sales
group by cube(product_id, month)
order by product_id, month;
