ソースコード
select
    class_name CLASS,
    person_name PERSON,
    amt HOUSEHOLDS
from HOUSEHOLD h1
where 1 = 1
and person_code != '1'
and class_code != '01'
and amt = (
    select max(amt) from HOUSEHOLD h2
    where 1 = 1
    and h2.person_code != '1'
    and h2.class_code != '01'
    and h1.class_code = h2.class_code
    group by h2.class_code
)
order by 1 asc
;
提出情報
提出日時2024/11/03 02:10:13
コンテスト第3回 SQLコンテスト
問題最大世帯人員
受験者negroponte
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
85 MB
データパターン2
AC
86 MB