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