Sunday, July 14, 2024

Alter column name in mariadb

ALTER TABLE customer CHANGE COLUMN `CUST_ID` -- old name; notice optional backticks CustomerID -- new name decimal(15,0); -- must include all the datatype info

No comments:

Post a Comment