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);

Copyright 1999-2023 by Refsnes Data. All Rights Reserved.