bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths
Learn/SQL/SQL References
SQL•SQL References

SQL ADD Keyword

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

Previous

SQL Data Types for MySQL, SQL Server, and MS Access

Next

SQL ADD CONSTRAINT Keyword