ソースコード
with t1 as(select subject_code,avg(score) me from scores where test_code='T00001' group by subject_code)
   
update scores set passed=t1.me >=scores.score
from t1
where t1.subject_code=scores.subject_code
and scores.test_code='T00001'
提出情報
提出日時2024/06/23 01:26:27
コンテストSQLの教科書確認用コンテスト4
問題副問合せの結果で絞り込み2
受験者pp1mqa6hkm
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量103 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
91 MB
データパターン2
WA
101 MB
データパターン3
WA
103 MB