ソースコード
with SubAvg as(
select avg(total_score) as avg_total
from total_scores
)

update total_scores as ts
set passed = TRUE
from SubAvg as sub
where ts.total_score >= sub.avg_total;

update total_scores as ts
set passed = FALSE
where passed = null;

----------------------------------
with SubAvg as(
select avg(total_score) as avg_total
from total_scores
)

select total_scores.*, cast(sub.avg_total as int)  from total_scores, SubAvg as sub

提出情報
提出日時2024/06/27 16:11:05
コンテストSQLの教科書確認用コンテスト4
問題副問合せの結果で絞り込み1
受験者nishimura
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量111 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
111 MB
データパターン2
WA
108 MB