実験環境
使用するテーブル
select * from SH.sales;
CUST_IDとTIME_IDでグルーピングしたのち、行数をカウントし、その最大値をTIME_IDとともに出力したい。
完成図
SQLスクリプト
Viewを利用
cust_idがその日ごとに購入した製品種の個数を集計する。
create view sales_cnt_view
as select CUST_ID cid, count(TIME_ID) as cnt_tid, TIME_ID tid
from SH.SALES
group by CUST_ID, TIME_ID;
select * from sales_cnt_view;
JOINを利用
select s1.cid 顧客ID, s1.max_cnt_tid 顧客の購入商品種類の最大値, s2.tid 日付
from (select cid, MAX(cnt_tid) as max_cnt_tid
from sales_cnt_view
group by cid) s1
join sales_cnt_view s2 on s1.cid = s2.cid and s1.max_cnt_tid = s2.cnt_tid
order by s1.cid;