コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
update scores as a
set passed = TRUE
from
(
select
student_code
,subject_code
,score
,avg(score) over(partition by subject_code) avg_sub_score
from
scores
) as b
where
a.student_code = b.student_code
and a.subject_code = b.subject_code
and a.score >= b.avg_sub_score
;
update scores set passed = FALSE where passed is null;
--select * from scores;
提出情報
提出日時 | 2024/10/04 18:13:27 |
コンテスト | SQLの教科書確認用コンテスト4 |
問題 | 副問合せの結果で絞り込み2 |
受験者 | nosh |
状態 (詳細) | AC (Accepted: 正答) |
メモリ使用量 | 88 MB |
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
87 MB
データパターン2
AC
87 MB
データパターン3
AC
88 MB