コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
update total_scores as a
set total_score = sum_score
from
(
select
student_code
,sum(score) sum_score
from
scores
group by
student_code
) as tmp
where
a.student_code = tmp.student_code
;
select * from total_scores;
提出情報
提出日時 | 2024/10/04 08:05:44 |
コンテスト | SQLの教科書確認用コンテスト3 |
問題 | 副問合せの結果と結合 |
受験者 | nosh |
状態 (詳細) | AC (Accepted: 正答) |
メモリ使用量 | 87 MB |
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
AC
87 MB