We've inherited a WordPress (3.3.2) site that has 13k pending comments, all of which are spam.
To delete all these comments is it sufficient and safe enough to do:
DELETE FROM wp_comments;
DELETE FROM wp_commentmeta;
...or alternatively TRUNCATE both tables in the database?