ソースコード
update scores
set score = CASE 
    WHEN score + 5 > 100 
        then 100 
        else score + 5
    END
where students.student_code = scores.student_code
and   student_code IN ('佐藤 幸平','山田 康介')
提出情報
提出日時2025/01/29 14:16:18
コンテストSQLの教科書確認用コンテスト3
問題テーブル結合して更新
受験者sn
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量87 MB
メッセージ
SQLITE_ERROR: no such column: students.student_code
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
RE
85 MB
データパターン2
RE
87 MB