Answers for "ORACLE DROP COLumn FROM TABLES"

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

oracle sql drop table

DROP TABLE my_table;
-- To 'really' free space
DROP TABLE my_table PURGE;
Posted by: Guest on January-23-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language