ソースコード
update scores
set score = score + 5
from students
where scores.student_code = students.student_code
and (students.student_name = '佐藤 幸平' or students.student_name = '山田 康介');

UPDATE scores
SET score = CASE WHEN score >= 100 THEN 100
ELSE score
END ;

select *
from scores
where student_code = 'A00016' or student_code = 'A00095' ;
提出情報
提出日時2024/06/26 15:37:18
コンテストSQLの教科書確認用コンテスト3
問題テーブル結合して更新
受験者hettachan
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量91 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
91 MB
データパターン2
AC
86 MB