ソースコード
update scores as sc
set ranking = sub.ranking
from (select 
        test_code,
        student_code,
        rank() over(order by score desc) as ranking 
    from scores where test_code = 'T00001') as sub
where sc.student_code = sub.student_code
and sc.test_code = sub.test_code
提出情報
提出日時2024/06/07 15:04:12
コンテストSQLの教科書確認用コンテスト4
問題分析関数の結果で更新2
受験者FighterOfTheWind
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量108 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
93 MB
データパターン2
WA
98 MB
データパターン3
WA
108 MB