Description

The SQL keyword DROP COLUMN is used to delete an existing column, which deletes the column and its contents permanently from a table.

The below SQL deletes a column from a table.

ALTER TABLE customers
DROP COLUMN address;

Related Links