ソースコード
update scores set ranking  = sub.rank 
from 
     ( select subject_code, score, rank() over ( partition by subject_code order by score ) as rank from scores ) as sub
where scores.subject_code = sub.subject_code
    and scores.score = sub.score
提出情報
提出日時2024/05/30 16:35:44
コンテストSQLの教科書確認用コンテスト4
問題分析関数の結果で更新2
受験者hmasa
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量105 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
104 MB
データパターン2
WA
104 MB
データパターン3
WA
105 MB