mySQL replace() : find and replace text in existing mySQL data column
This is a really useful function - you can find and replace text in any column of a mySQL database using the " replace() " function.
UPDATE table_name
SET column_name = replace(column_name,'text to find','replacement text');
easy!


There are no comments for this entry.
Add Comment