Answers for "search and replace mysql query"

PHP
1

search for replace in mysql

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

find and replace database table phpmyadmin

update TABLE_NAME set FIELD_NAME =
replace(FIELD_NAME, 'Text to find', 'text to replace with');
Posted by: Guest on January-05-2021

Code answers related to "search and replace mysql query"

Browse Popular Code Answers by Language