drop table oraCLE code example
Example 1: oracle sql drop table
DROP TABLE my_table;
-- To 'really' free space
DROP TABLE my_table PURGE;
Example 2: oracle sql drop table purge
DROP TABLE customers PURGE;
DROP TABLE my_table;
-- To 'really' free space
DROP TABLE my_table PURGE;
DROP TABLE customers PURGE;