Home Apache PHP Ubuntu MySQL Linux HTML Win CSS Perl Javascript Rants Retro
 
Print This Page
Date Posted: Sunday 07th of February 2010 | Category: MySQL
Find and Replace in MySQL.
If you have imported your database, only to find that funny characters have appeared, you can issue the following mysql statement inside PHPMyAdmin to find and replace. When using Find and Replace always be careful.

update tbl_name set table_field = replace(table_field,'replace_that','with_this');