ソースコード
with ss as (
select student_code, subject_code, rank()OVER(partition by subject_code order by score desc) as ranking
from scores
)
update scores 
set  ranking = ss.ranking
from ss
where scores.student_code = ss.student_code and scores.subject_code = ss.subject_code
;

提出情報
提出日時2024/10/03 13:57:09
コンテストSQLの教科書確認用コンテスト4
問題分析関数の結果で更新2
受験者yunyun8686
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量88 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
AC
86 MB
データパターン3
AC
88 MB