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

ALTER TABLE

ALTER TABLE

The ALTER TABLE command is a versatile SQL statement that enables the addition, deletion, or modification of columns within a table.

It also facilitates the addition and deletion of various constraints associated with the table.

For instance, the provided SQL snippet illustrates the addition of an “Email” column to the “Customers” table.

Example

ALTER TABLE Customers
ADD Email varchar(255);

The given SQL removes the “Email” column from the “Customers” table.

Example

ALTER TABLE Customers
DROP COLUMN Email;