Answers for "mysql replace column"

PHP
3

mysql replace string in table

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

mysql change column

ALTER TABLE Persons

ADD DateOfBirth date;
Posted by: Guest on July-30-2021

Browse Popular Code Answers by Language