Search and Replace from another table in MySQL

In MySQL, its easy to find occurrence of a sub-string within string and replace all that occurrences with MySQL REPLACE() function like: UPDATE tablename set table_column = REPLACE (table_column, ‘[string to...