ソースコード
with mx as (
select class_name, max(amt) ma from household 
where person_code != 1 and class_code != '01'
group by class_name
)
select household.CLASS_NAME as CLASS, household.PERSON_NAME as PERSON, household.AMT as HOUSEHOLDS from household join mx on household.amt = mx.ma and household.class_name = mx.class_name where person_code != 1 and class_code != '01'
order by household.CLASS_CODE asc
提出情報
提出日時2024/04/28 16:39:05
コンテスト第3回 SQLコンテスト
問題最大世帯人員
受験者daku10
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
84 MB