The following sql code snippet will set all posts/entries in WordPress as draft.
UPDATE wp_posts
SET wp_posts.post_status = 'draft'
WHERE wp_posts.post_type ='post';
Every soul must taste of death.
The following sql code snippet will set all posts/entries in WordPress as draft.
UPDATE wp_posts
SET wp_posts.post_status = 'draft'
WHERE wp_posts.post_type ='post';

