Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am a newbie to databases. I am using MySQL, and I have a table A using three attributes to form a composite primary key:

A: [key1, key2, key3], dateCreated, createdBy, ...

Now I have another table B, which needs to refer to records from the table above. Now, reusing all the three attributes above again to form a key seems to be a pain. Is it okay to use an additional auto incrementing dummy "id" attribute to table A as a primary key, and use that as a reference in table B? Which is the right thing to do?

share|improve this question

2 Answers

up vote 1 down vote accepted

It certainly is. It's called a surrogate key: a surrogate key is not derived from application data.

[There is a debate surrounding the use of surrogate keys. The wiki article linked to lists advantages/disadvantages.]

As @Scharrels points out, a unique constraint should be applied to your 3 fields, if you use a surrogate key.

share|improve this answer

It would be better to put a unique constraint on the set (key1, key2, key3) and make the single "dummy" id your primary key, as it will be used as a reference for other tables.

If you want to speed up lookups, you kan put additional indices on the set (key1, key2, key3).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.