Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

ADD

ADD

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

Example

“Include an “Email” column within the “Customers” table.”

ALTER TABLE Customers
ADD Email varchar(255);