Can i have multiple primary keys in a single table?
|
You can have a Composite Primary Key which is a primary key made from two or more columns. For example:
Update: Here is a link with a more detailed description of composite primary keys. |
|||||
|
|
You can only have one primary key, but you can have multiple columns in your primary key. You can also have Unique Indexes on your table, which will work a bit like a primary key in that they will enforce unique values, and will speed up querying of those values. |
|||
|
|
|
A table can have multiple candidate keys. Each candidate key is a column or set of columns that are UNIQUE, taken together, and also NOT NULL. Thus, specifying values for all the columns of any candidate key is enough to determine that there is one row that meets the criteria, or no rows at all. Candidate keys are a fundamental concept in the relational data model. It's common practice, if multiple keys are present in one table, to designate one of the candidate keys as the primary key. It's also common practice to cause any foreign keys to the table to reference the primary key, rather than any other candidate key. I recommend these practices, but there is nothing in the relational model that requires selecting a primary key among the candidate keys. |
|||||
|
|
This is the answer for both the main question and for @Kalmi's question of
This code below has a composite primary key. One of its columns is auto-incremented. This will work only in MyISAM. InnoDB will generate an error "ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key".
|
|||
|
|
|
As noted by the others it is possible to have multi-column primary keys. It should be noted however that if you have some functional dependencies that are not introduced by a key, you should consider normalizing your relation. Example:
There can be a functional dependency between Thus one may consider splitting it into another table:
So that it is consistent with the third normal form. |
||||
|
|
|
Some people use the term "primary key" to mean exactly an integer column that gets its values generated by some automatic mechanism. For example If so, the answer depends on the brand of database you're using. In MySQL, you can't do this, you get an error:
In some other brands of database, you are able to define more than one auto-generating column in a table. |
|||||||
|
|
Good technical answers were given in better way than I can do. I am only can add to this topic: If you want something that not allowed/acceptable it is good reason to take step back.
Hope it will helps someone. |
|||
|
|
|
Yes, Its possible in SQL, but we can't set more than one primary keys in MsAccess. Then, I don't know about the other databases.
|
||||
|
|
protected by Michael Myers♦ Nov 25 '10 at 5:33
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.