ソースコード
update total_scores
set ranking = sub.ranking
from (
    select student_code, RANK() OVER(ORDER BY total_score DESC) as ranking
    from total_scores
) as sub
where total_scores.student_code = sub.student_code;
提出情報
提出日時2024/06/27 10:45:37
コンテストSQLの教科書確認用コンテスト4
問題分析関数の結果で更新1
受験者imochandondoco
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量105 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
92 MB
データパターン2
AC
105 MB