Answers for "can we drop multiple columns at a time in oracle"

SQL
1

drop colum oracle 18c

-- tested on oracle 18c
alter table table_name drop column column_name;

-- example
alter table products drop column category;
Posted by: Guest on June-15-2020

Code answers related to "can we drop multiple columns at a time in oracle"

Code answers related to "SQL"

Browse Popular Code Answers by Language