批量删除标题字符长度小于等于20的文章
1 |
DELETE FROM wp_posts where length(post_title)<=20 |
批量删除内容字符长度小于等于300的文章
1 |
DELETE FROM wp_posts where length(post_content)<=300 |
批量删除内容字符长度大于等于7500的文章
1 |
DELETE FROM wp_posts where length(post_content)>7500 |