ソースコード
update scores as s
set ranking = sub.ranking
from (
    select
        student_code,
        subject_code,
        RANK() OVER(partition by subject_code order by score DESC) as ranking
    from scores
) as sub
where s.student_code = sub.student_code
    and s.subject_code = sub.subject_code
提出情報
提出日時2024/06/27 16:00:05
コンテストSQLの教科書確認用コンテスト4
問題分析関数の結果で更新2
受験者Shuji_0104
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量92 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
AC
92 MB
データパターン3
AC
87 MB