Answers for "how to drop a column in sqlplus"

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 "SQL"

Browse Popular Code Answers by Language