Jump to content

Change part of the data


KingOfHeart

Recommended Posts

I have a bunch of Links in my "Downloads" table in the "link" field.

I want to search all links that start with "http://openzelda.thegaminguniverse.com" and change it to http://openzelda.thegaminguniverse.org

I know how to change a rows information but not completly sure on how to change part of the information.

I got at least 50 rows to change so I don't want to goof this up.

Link to comment
https://forums.phpfreaks.com/topic/226850-change-part-of-the-data/
Share on other sites

This should work just fine, but as with anything that alters data, you should back up the table before you run it.

UPDATE `table` SET `field` = REPLACE(`field`, 'http://openzelda.thegaminguniverse.com', 'http://openzelda.thegaminguniverse.org')

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.