How to Delete a Column from a Table in Oracle SQL
Here is the syntax to delete one column from an existing table in Oracle SQL. As this is not used very often I am noting it here for quick reference.
ALTER TABLE employee DROP COLUMN vacationPay;Pretty simple.