Let's say that a site using WordPress has half the posts of the standard type, and the other half uses a Custom Post Type "review" .
But this type of post had no registered tags, so it shared those of the standard posts (post_tag).
After the custom tag is assigned to the custom posts, it then uses "review-tag". How can I via SQL convert the default tags only within those custom posts to the new type?
This command, for example, converts ALL tags:
UPDATE wp_term_taxonomy SET taxonomy='review-tag', parent=0 WHERE taxonomy='tag';
But I need to do this only with review posts.