ソースコード
select
    class_name as CLASS,
    person_name as PERSON,
    households as HOUSEHOLDS
from (
    select
        class_name,
        person_name,
        max(amt) as households,
        row_number() over(partition by 
            class_name order by 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/20 15:15:09
コンテスト第3回 SQLコンテスト
問題最大世帯人員
受験者koya_346
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量107 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
101 MB
データパターン2
AC
107 MB