ソースコード
with temp1 as(
    select
        PERSON_CODE
        , CLASS_CODE
        , AMT
    from
        HOUSEHOLD
    where
        PERSON_CODE != '1'
        and CLASS_CODE != '01'
        and AMT is not null
) , temp2 as (
    select
        PERSON_CODE
        , CLASS_CODE
        , max(AMT)
    from
        temp1
    group by
        CLASS_CODE
)
select
    CLASS_NAME as CLASS
    , PERSON_NAME as PERSON
    , AMT as HOUSEHOLDS
from
    temp2 t
    inner join HOUSEHOLD h on t.PERSON_CODE = h.PERSON_CODE and t.CLASS_CODE = h.CLASS_CODE
order by
    t.CLASS_CODE asc
;
提出情報
提出日時2022/10/19 18:47:49
コンテスト第3回 SQLコンテスト
問題最大世帯人員
受験者toridashisoba
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量109 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
109 MB
データパターン2
AC
92 MB