ソースコード
update total_scores as ts
set ranking = sub.score_rank
from(
    select 
    rank() over(order by total_score DESC) as score_rank,
    student_code
    from total_scores
) as sub
where ts.student_code = sub.student_code;

select * from total_scores
提出情報
提出日時2024/06/27 16:43:51
コンテストSQLの教科書確認用コンテスト4
問題分析関数の結果で更新1
受験者nishimura
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量105 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
105 MB
データパターン2
AC
88 MB