Can one drop a column from a table?
From Oracle8i one can DROP a column from a table. Look at this sample script, demonstrating the ALTER TABLE table_name DROP COLUMN column_name; command. With previous releases one can use Joseph S. Testa‘s DROP COLUMN package that can be downloaded from http://www.oracle-dba.com/ora_scr.htm. Other workarounds: 1. SQL> update t1 set column_to_drop = NULL; SQL> rename t1 to t1_base; SQL> create view t1 as select from t1_base; 2.