The DROP
Clause
The DROP colname
clause deletes the specified column from the table.An attempt to drop a column will fail if anything references it.Consider the following items as sources of potential dependencies:
-
column or table constraints
-
indexes
-
stored procedures, functions and triggers
-
views
-
Each time a column is dropped, the table’s metadata change counter is increased by one.