plsql oracle delete from table code example
Example 1: delete column from table oracle PL SQL
ALTER TABLE table_name DROP COLUMN column_name;
Example 2: pl sql delete from table
DELETE FROM customers
WHERE last_name = 'Smith';
ALTER TABLE table_name DROP COLUMN column_name;
DELETE FROM customers
WHERE last_name = 'Smith';