SQL ADD Keyword


ADD

The ADD command is used to add a column in an existing table.

The following SQL adds an "Email" column to the "Customers" table:

Example

ALTER TABLE Customers
ADD Email varchar(255);


Login
ADS CODE