テーブルがあり、最新の 30 行のみを ID 順に表示しています。
以下のクエリを使用して、最新の 30 行より後の行を削除しようとしています。
DELETE FROM table WHERE type = 'test' ORDER BY id DESC LIMIT 30, 60
以下でこのエラーが発生し続けます
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' 60' at line 1
私は何を間違っていますか?