how to remove primary key in oracle without constraint name 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;