Advertisement
Guest User

Untitled

a guest
Mar 30th, 2018
2,562
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. Structure of MySQL query is following:
  2. UPDATE `table_name` SET `field_name` = replace(field_name, 'pixhost.org', 'pixhost.to');
  3.  
  4. Wordpress query:
  5. UPDATE `wp_posts` SET `post_content` = replace(post_content, 'pixhost.org', 'pixhost.to');
  6.  
  7. phpBB3 query:
  8. UPDATE `phpbb_posts` SET `post_text` = replace(post_text, 'pixhost.org', 'pixhost.to');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement