/ Published in: SQL
Expand |
Embed | Plain Text
UPDATE tablename SET fieldname = REPLACE(fieldname, searchstring, replacestring); ;example changing domain IN wordpress posts UPDATE wp_posts SET post_content = REPLACE(post_content, 'www.domain.de', 'domain.com');
You need to login to post a comment.
