コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
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