ソースコード
UPDATE scores
SET score = score + 5 
FROM students
WHERE scores.student_code = (select students.student_code from students where students.student_name = '佐藤 幸平')
    or scores.student_code = (select students.student_code from students where students.student_name = '山田 康介');
    
update scores set score = 100 where score > 100;
    
提出情報
提出日時2024/07/05 10:35:01
コンテストSQLの教科書確認用コンテスト3
問題テーブル結合して更新
受験者asano
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量88 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
87 MB
データパターン2
AC
88 MB