ソースコード
UPDATE total_scores T1
JOIN 
(SELECT student_code ,
 RANK() over (order by total_score desc   ) as rnk
FROM total_scores) T2
ON T1.student_code = T2.student_code
SET ranking = rnk
提出情報
提出日時2024/05/06 15:15:07
コンテストSQLの教科書確認用コンテスト4
問題分析関数の結果で更新1
受験者hysshyss
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量86 MB
メッセージ
SQLITE_ERROR: near "T1": syntax error
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
RE
84 MB
データパターン2
RE
86 MB