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