in sql oracle how to drop table with primary key 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;