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.

Let's say I have a 3rd table that stores data from two other tables...

fk_first_table | fk_second_table
1 | 1
1 | 2
1 | 3
1 | 4
2 | 1

...

How can I assure that both keys never repeat... Forming a unique tuple... Kind of unique together like a table of truth.

share|improve this question
The combination of columns could be treated as the primary key; CREATE TABLE ThirdTable ( fk_first_table INTEGER NOT NULL REFERENCES first_table, fk_second_table INTEGER NOT NULL REFERENCES second_table, PRIMARY KEY(fk_first_table, fk_second_table)). Alternatively, you can change PRIMARY KEY to UNIQUE to have the DBMS enforce a uniqueness constraint without making the combination the primary key (which would be relevant if some other column or columns form the primary key). – Jonathan Leffler Oct 17 '12 at 16:16
Great! I didn't expected such a simple and genial solution... – FCC-PT Oct 17 '12 at 16:17

2 Answers

up vote 3 down vote accepted
CREATE UNIQUE INDEX my_index ON tbl_name (fk1, fk2)
share|improve this answer
Thank you very much – FCC-PT Oct 17 '12 at 16:00

You need to create a unique index :

CREATE UNIQUE INDEX indexName ON thirdtable (fk_first_table, fk_second_table)
share|improve this answer
Yes, corrected. thanks. – richardtz Oct 17 '12 at 16:23

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.