ソースコード
update scores as s1
   set score=CASE exptbl.exp_score WHEN exptbl.exp_score > 100 THEN 100 ELSE exptbl.exp_score END
  from (select s.test_code, 
               s.student_code, 
               s.subject_code, 
               s.score, 
               s.score+5 as exp_score 
          from scores s inner join students on s.student_code=students.student_code 
         where student_name in ('佐藤 幸平', '山田 康介')
       ) as exptbl
where s1.test_code=exptbl.test_code
  and s1.student_code=exptbl.student_code
  and s1.subject_code=exptbl.subject_code
;
select * from scores
;
提出情報
提出日時2024/07/22 11:36:06
コンテストSQLの教科書確認用コンテスト3
問題テーブル結合して更新
受験者yamada_hi_roky
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量87 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
87 MB
データパターン2
WA
87 MB