snippet: view plain - save this
1 UPDATE `table_name` SET `field_name` = replace( `field_name` , 'find this', 'replace with' ) ;
Query to replace string in SQL
1 UPDATE `table_name` SET `field_name` = replace( `field_name` , 'find this', 'replace with' ) ;
Query to replace string in SQL
0 comments