ソースコード
update scores as t1
set score = 
    case when score + 5 > 100 then 100
    else score + 5
    end
from students as t2
where
    t1.student_code = t2.student_code
    and t2.student_name in ('佐藤 幸平', '山田 康介')
;
提出情報
提出日時2024/10/04 07:32:46
コンテストSQLの教科書確認用コンテスト3
問題テーブル結合して更新
受験者nosh
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
86 MB