ソースコード
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:51:50
コンテストSQLの教科書確認用コンテスト4
問題副問合せの結果で絞り込み2
受験者roku
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量117 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
108 MB
データパターン2
WA
109 MB
データパターン3
WA
117 MB