So basically what i'm trying to do is search inside a table called "product_description" find the row 'name' and inside name search for the string Energy.
Lets say i have a product called Energy drink from America. I know how to search for Energy and to replace it:
$sql = "UPDATE product_description SET name = REPLACE(name, 'Energy', 'Best Energy')";
Is there a way to search for Energy and replace America with Europe?
update ... set foo=replace(...) where foo like '%America%'?