ソースコード
with 
t as (
    select 
        class_name
        , max(amt) as max_amt
    from household
    where 
        PERSON_CODE <> '1'
        and CLASS_CODE <> '01'
    group by class_name
)
select 
    CLASS_NAME as CLASS
    , PERSON_NAME as PERSON
    , amt
from HOUSEHOLD
left join t using(class_name)
where 
    PERSON_CODE <> '1'
    and CLASS_CODE <> '01'
    and household.amt = t.max_amt
order by class_code 
;
提出情報
提出日時2022/12/10 20:22:25
コンテスト第3回 SQLコンテスト
問題最大世帯人員
受験者rise3812
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量81 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
81 MB
データパターン2
WA
80 MB