ソースコード
with mx as (
select 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 where person_code != 1 and class_code != '01'
order by household.CLASS_CODE asc
提出情報
提出日時2024/04/28 16:37:47
コンテスト第3回 SQLコンテスト
問題最大世帯人員
受験者daku10
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
84 MB
データパターン2
AC
84 MB