PostgreSQL Tutorial PostgreSQL Advanced PostgreSQL Database Account Management PostgreSQL References
PostgreSQL Tutorial PostgreSQL Advanced PostgreSQL Database Account Management PostgreSQL References

PostgreSQL DROP COLUMN Keyword



The PostgreSQL DROP COLUMN keyword is used to a delete columns from an existing table.

Syntax

The syntax for using DROP COLUMN keyword to drop columns in PostgreSQL is given below:

ALTER TABLE table_name
DROP COLUMN column_name;

Example:

Consider a database table called Employee with the following records:

EmpIDNameCityAge
1JohnLondon25
2MarryNew York24
3JoParis27
4KimAmsterdam30

DROP COLUMN

To drop the Salary column from the Employee table, the following statement can be used:

ALTER TABLE Employee
DROP COLUMN Age;

This will produce the below mentioned result:

EmpIDNameCity
1JohnLondon
2MarryNew York
3JoParis
4KimAmsterdam

❮ PostgreSQL Keywords