Ganz blöde MySQL Frage - Wrong Syntax

multimolti

Erfahrenes Mitglied
Hallo

Ich wollte heute mal die DB meines Blogs aufräumen, da sind tausende Spam Comments drin, die auch als solche erkannt wurden, aber sicherheitshalber aufgehoben werden.

Eine Funktion dazu hat Wordpress leider nicht, ein Plugin gibts auch nicht, also wollte ich das dann selber per MySQL Query machen. Aber ich bekomme immer Wrong Syntax, obwohl das doch stimmen müsste:

Code:
DELETE FROM 'wpblog_comments' WHERE 'comment_approved' = 'spam'

Code:
1064 - You have an error in your MySQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''wpblog_comments' WHERE 'comment_apporoved' = 'spam''

MySQL Website sagt:
Code:
DELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name
    [WHERE where_condition]
    [ORDER BY ...]
    [LIMIT row_count]

Genau das mach ich doch! Was ist falsch?
 
Zurück