search & replace string in mysql - Mysql Views : 201
Tagged in : Mysql
Send mail vote down 0 vote down 0
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 .