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.

18th Sep 2017, 10:02 AM
Bhumika
Bhumika - avatar
2 odpowiedzi
0
You can add a unique constraint...even several...
19th Sep 2017, 11:07 PM
Nicola
+ 1
create table tablename (column1, column2 , primary key(column1,column2))
18th Sep 2017, 10:23 AM
kanishk goel
kanishk goel - avatar