drop colum oracle 18c

Solutions on MaxInterview for drop colum oracle 18c by the best coders in the world

showing results for - "drop colum oracle 18c"
Dominick
20 Jan 2017
1-- tested on oracle 18c
2alter table table_name drop column column_name;
3
4-- example
5alter table products drop column category;