ソースコード
update scores as s
set ranking = ranking.r
from(
    select
        subject_code
        ,student_code
        ,rank()over(partition by subject_code order by score desc) as r
    from scores
) as ranking
where ranking.student_code = s.student_code
and ranking.subject_code = s.subject_code
提出情報
提出日時2024/08/06 13:15:20
コンテストSQLの教科書確認用コンテスト4
問題分析関数の結果で更新2
受験者HamamatsuUnagi
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量106 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
95 MB
データパターン2
AC
106 MB
データパターン3
AC
98 MB