SQL: Change Author Attribution On All Posts
SELECT ID, display_name FROM wp_users; UPDATE wp_posts SET post_author=NEW_AUTHOR_ID WHERE post_author=OLD_AUTHOR_ID;