ソースコード
update scores as s1
   set score=exptbl.exp_score
  from (select s.test_code, 
               s.student_code, 
               s.subject_code, 
               s.score, 
               FLOOR(s.score/0.9) as exp_score 
          from scores s inner join subjects on s.subject_code=subjects.subject_code 
         where subject_name='国語'
       ) 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:27:30
コンテストSQLの教科書確認用コンテスト3
問題値を参照して更新
受験者yamada_hi_roky
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
85 MB