Answers for "how to remove primary key in oracle"

SQL
1

drop primary key oracle

-- Dropping Using alter
ALTER TABLE table_name
DROP CONSTRAINT constraint_name;
Posted by: Guest on September-21-2020

Code answers related to "how to remove primary key in oracle"

Code answers related to "SQL"

Browse Popular Code Answers by Language