ソースコード
--update total_scores
--set passed = true
--where total_score >= (select avg(total_score) from total_scores);

--update total_scores
--set passed = false
--where total_score <= (select avg(total_score) as avg from total_scores);

update total_scores
set passed = case when total_score >= (select avg(total_score) from total_scores) then true
    else false
    end;

select * from total_scores
提出情報
提出日時2024/06/27 10:24:07
コンテストSQLの教科書確認用コンテスト4
問題副問合せの結果で絞り込み1
受験者imochandondoco
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量109 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
109 MB