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

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