Answers for "how to delete a column in oracle sql"

SQL
4

delete column from table oracle PL SQL

ALTER TABLE table_name DROP COLUMN column_name;
Posted by: Guest on March-13-2020
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 "how to delete a column in oracle sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language