0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【SQL (Oracle)】GROUP BYで選択していない列を集計(MAX, MINなど)列と同時に出力したい

Last updated at Posted at 2019-12-18

実験環境

Oracle Live SQL

image.png

使用するテーブル

select * from SH.sales;

CUST_IDとTIME_IDでグルーピングしたのち、行数をカウントし、その最大値をTIME_IDとともに出力したい。

image.png

完成図

image.png

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;

image.png

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;

image.png

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?