ソースコード
select
    CLASS, max(case when r=1 then pn else null end) as PERSON, max(case when r=1 then amt else null end) as HOUSEHOLDS
from (
    select class_name as CLASS, PERSON_NAME as pn, rank() over (partition by class_code order by AMT desc) as r, amt, CLASS_CODE
    from HOUSEHOLD where CLASS_CODE!='01'and PERSON_CODE!='1'
) as t
group by CLASS
order by t.CLASS_CODE asc
提出情報
提出日時2023/04/09 15:59:05
コンテスト第3回 SQLコンテスト
問題最大世帯人員
受験者tabr
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
76 MB