I have created one table where I want to add combination of multiple column as primary key.
Can someone please help me to know how to do this?
In Oracle you can do like this:
create table D ( ID numeric(1), CODE varchar(2), constraint PK_D primary key (ID, CODE) )
In my table I have three unique column this can be referred by other table. Which key I have to use for this.