ソースコード
update total_scores as ts
set ranking = sub.rank
from (
  select
    rank() over(order by total_score desc) as rank
    , student_code
  from
    total_scores
) as sub
where
  ts.student_code = sub.student_code
;
提出情報
提出日時2024/07/02 22:29:04
コンテストSQLの教科書確認用コンテスト4
問題分析関数の結果で更新1
受験者meichi5
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量87 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
87 MB
データパターン2
AC
87 MB