0
How to set two primary keys in one table in oracle?
set one primary key at table creation and another one is after creation of primary key.
2 Answers
0
You can add a unique constraint...even several...
+ 1
create table tablename (column1, column2 , primary key(column1,column2))