ソースコード
update scores
set ranking = s2.ranking
from(
    SELECT 
        student_code
        ,subject_code
        ,RANK() OVER(PARTITION BY subject_code ORDER BY score DESC) as ranking
    FROM 
        scores
) as s2
where scores.student_code = s2.student_code
    and scores.subject_code = s2.subject_code;
    
select * from scores
提出情報
提出日時2024/08/06 13:49:33
コンテストSQLの教科書確認用コンテスト4
問題分析関数の結果で更新2
受験者qwop3
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量112 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
112 MB
データパターン2
AC
105 MB
データパターン3
AC
109 MB