SQL ADD Keyword
ADD
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.
Add an "Email" column to the "Customers" table:
ALTER TABLE Customers
ADD Email varchar(255);
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com