Can a table have multiple Primary keys?
You ask if you can have more than one primary key field and you most certainly can. You can have only one primary key, but that can consist of as many columns as you need to uniquely identify your rows. Use something like this when you are creating your table: CONSTRAINT pk_PersonID PRIMARY KEY (P_Id,LastName) … Read more