ソースコード
update scores
set passed = case when C.score >= C.score_avg then TRUE ELSE FALSE END
from
(
select *
from
    scores as A
inner join
(select subject_code, avg(score) as score_avg
from scores
group by subject_code
) as B
on A.subject_code = B.subject_code
) as C
where scores.student_code = C.student_code and scores.subject_code = C.subject_code;
    
select * from scores
提出情報
提出日時2024/08/06 13:43:42
コンテストSQLの教科書確認用コンテスト4
問題副問合せの結果で絞り込み2
受験者k_kishida
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量99 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
99 MB
データパターン2
AC
88 MB
データパターン3
AC
89 MB