SQL Keyword ADD

The ADD keyword can be used to add a column to an existing table.

The below SQL adds a new column "email" to the "customers" table.

ALTER TABLE customers
ADD email varchar(255);

Related Links