ソースコード
select
    class_name as class,
    person_name as person,
    households
from (
    select
        class_name,
        person_name,
        max(amt) as households,
        row_number() over(partition by class_name order by max(amt) desc) as rank
    from
        household
    where
        person_code != "1"
        and class_code != "01"
    group by
        class_name,
        person_name
)
where
    rank = 1
提出情報
提出日時2022/10/19 21:52:27
コンテスト第3回 SQLコンテスト
問題最大世帯人員
受験者koya_346
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量111 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
95 MB
データパターン2
WA
111 MB