ソースコード
UPDATE scores
SET passed = TRUE
WHERE score >= (select avg(score) from scores )
and subject_code = 'S00001'
or
score >= (select avg(score) from scores )
and subject_code = 'S00002'
or
score >= (select avg(score) from scores )
and subject_code = 'S00003';

UPDATE scores
SET passed = FALSE
WHERE score <= (select avg(score) from scores )
and subject_code = 'S00001'
or
score <= (select avg(score) from scores )
and subject_code = 'S00002'
or
score <= (select avg(score) from scores )
and subject_code = 'S00003';

select * from scores;
提出情報
提出日時2024/06/27 14:50:37
コンテストSQLの教科書確認用コンテスト4
問題副問合せの結果で絞り込み2
受験者roku
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量110 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
96 MB
データパターン2
WA
108 MB
データパターン3
WA
110 MB