I'm trying to write a basic query that changes a "post type" for any posts that contain the word "releases" in their post title.
The query I've written comes up with a syntax error, and I'm uncertain as to where I've gone wrong.
UPDATE TABLE wp_posts SET post_type = "release" WHERE post_title = "%RELEASE%";
LIKE '%RELEASE%'.