ソースコード
with tmp as (
select
    class_code
    ,class_name as "CLASS"
    ,person_name as "PERSON"
    ,amt as "HOUSEHOLDS"
    ,row_number() over(partition by class_name order by amt desc) "順位"
from
    household
where
    person_code <> '1'
    and class_code <> '01'

)
select
    class
    ,person
    ,households
from
    tmp
where
    "順位" = 1
order by
    class_code asc
;
提出情報
提出日時2024/09/22 07:22:04
コンテスト第3回 SQLコンテスト
問題最大世帯人員
受験者nosh
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
83 MB