ソースコード
update total_scores
set total_score = t.total_score
from (select test_code,
    student_code,
    sum(score) total_score
    from scores
    group by test_code, student_code
    ) t
where t.test_code = total_scores.test_code
and t.student_code = total_scores.student_code;
提出情報
提出日時2024/06/05 22:11:18
コンテストSQLの教科書確認用コンテスト3
問題副問合せの結果と結合
受験者iwashiMadai
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量88 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
88 MB
データパターン2
AC
88 MB