ソースコード
UPDATE total_scores as ts
SET total_score = sub.totalscore
FROM (select student_code, sum(score) as totalscore from scores group by student_code ) AS sub
WHERE ts.student_code = sub.student_code ;
提出情報
提出日時2024/06/26 16:42:56
コンテストSQLの教科書確認用コンテスト3
問題副問合せの結果と結合
受験者hettachan
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量109 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
109 MB
データパターン2
AC
109 MB