2

この sql で mysql エラーが表示されるのはなぜですか?

DELETE FROM wp_comments
JOIN wp_commentmeta ON wp_comments.comment_id =wp_commentmeta.comment_id 
AND wp_commentmeta.meta_key = 'somekey'                        
AND wp_comments.comment_post_ID = '1'

エラー文字列

[Err] 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 'INNER JOIN wp_commentmeta ON  
wp_comments.comment_id =wp_commentmeta.comment_id A' at line 2

アドバイスしてください。

4

1 に答える 1

6

ステートメントで使用joinする場合delete、削除するテーブルを指定する必要があります

DELETE c 
FROM wp_comments c
JOIN wp_commentmeta m ON c.comment_id = m.comment_id 
                      AND m.meta_key = 'somekey'                        
                      AND c.comment_post_ID = '1'
于 2013-06-25T18:18:22.203 に答える