The ADD command is used to add a column in an existing table.
Example
Add an "Email" column to the "Customers" table:
ALTER TABLE Customers
ADD Email varchar(255);The ADD command is used to add a column in an existing table.
Example
Add an "Email" column to the "Customers" table:
ALTER TABLE Customers
ADD Email varchar(255);