ソースコード
select
    class_name as CLASS,
    person_name as PERSON,
    amt as HOUSEHOLDS
from (
    select
        *,
        max(amt) over (partition by class_code) as max_amt
    from
        household
    where
        person_code != '1' and class_code != '01'
)
where
    amt = max_amt
order by
    class_code
;
提出情報
提出日時2022/12/15 17:08:10
コンテスト第3回 SQLコンテスト
問題最大世帯人員
受験者tekihei2317
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量81 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
81 MB
データパターン2
AC
80 MB