9951 explained code solutions for 126 technologies


mysqlReplace string


UPDATE table SET column = REPLACE(column, 'search', 'replace');ctrl + c
table

example table name

column

name of column to update/replace

REPLACE(column

execute string search and replace for column column

'search'

text to search for

'replace'

text to replace found substrings to