Answers for "find and replace in mysql column"

PHP
13

mysql replace

REPLACE(str, find_string, replace_with)
Posted by: Guest on May-26-2020
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 column"

Browse Popular Code Answers by Language