oracle delete purge code example
Example 1: pl sql delete from table
DELETE FROM customers
WHERE last_name = 'Smith';
Example 2: oracle sql drop table purge
DROP TABLE customers PURGE;
DELETE FROM customers
WHERE last_name = 'Smith';
DROP TABLE customers PURGE;