/ Published in: SQL
replace string in mysql
Expand |
Embed | Plain Text
UPDATE [table_name] SET [field_name] = REPLACE([field_name],'[string_to_find]','[string_to_replace]');
You need to login to post a comment.
replace string in mysql
UPDATE [table_name] SET [field_name] = REPLACE([field_name],'[string_to_find]','[string_to_replace]');
You need to login to post a comment.