search & replace string in mysql - Mysql Views : 216
Tagged in : Mysql
0 0
Send mail
search & replace string in mysql:

To find & replace string in mysql use "update" as,
update tablename set fieldname = replace(fieldname,'search string','replace with')


Example:
update test set description = replace(description,'”','"')


update clipart set description = replace(description,'”','"')

By Ramya, On - 2010-04-07



    Login to add Comments .