Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

mysql replace string in table

UPDATE products 
SET 
    productDescription = REPLACE(productDescription,
        'abuot',
        'about');
 
PREVIOUS NEXT
Tagged: #mysql #replace #string #table
ADD COMMENT
Topic
Name
8+4 =