how to drop a primary key in oracle code example
Example: drop primary key oracle
-- Dropping Using alter
ALTER TABLE table_name
DROP CONSTRAINT constraint_name;
-- Dropping Using alter
ALTER TABLE table_name
DROP CONSTRAINT constraint_name;