wordpress テーブルから重複する行を削除しようとしていますが、SQL エラーが発生しています
#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 'a, wp_posts b WHERE a.ID > b.ID AND a.post_title = b.post_title' at line 1
このように、私のクエリは
DELETE FROM wp_posts a, wp_posts b WHERE a.ID > b.ID AND a.post_title = b.post_title
誰でもこれを修正するのを手伝ってくれませんか。
前もって感謝します。