ソースコード
SELECT total_scores as a
SET ranking = sub.rank1
FROM(
SELECT student_code, RANK() OVER(ORDER BY total_score DESC) as rank1
FROM total_scores
) as sub
WHERE a.student_code = sub.student_code
提出情報
提出日時2024/06/27 10:54:03
コンテストSQLの教科書確認用コンテスト4
問題分析関数の結果で更新1
受験者NiceBuffer
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量114 MB
メッセージ
SQLITE_ERROR: near "SET": syntax error
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
RE
98 MB
データパターン2
RE
114 MB