Answers for "find and replace in mysql update query"

PHP
1

search for replace in mysql

UPDATE products SET 
productDescription = REPLACE(productDescription,'abuot','about');
Posted by: Guest on August-28-2020
1

update and replace mysql

#Search, Update & Replace Query

UPDATE `tblname` SET `description`= REPLACE(`description`, 'old name', 'New Name') WHERE `description` LIKE '%old name%';
Posted by: Guest on April-24-2021

Code answers related to "find and replace in mysql update query"

Browse Popular Code Answers by Language