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.
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 changePRIMARY KEYtoUNIQUEto 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