ORACLE - How to drop one table column in ORACLE Database?
You can drop column of table using the DROP clause of the ALTER TABLE statement.
ALTER TABLE TBL_COLUMN DROP COLUMN_NAME
You can drop column of table using the DROP clause of the ALTER TABLE statement.
ALTER TABLE TBL_COLUMN DROP COLUMN_NAME