Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
他の2つのテーブルからのデータを格納する3番目のテーブルがあるとしましょう...
fk_first_table | fk_second_table 1 | 1 1 | 2 1 | 3 1 | 4 2 | 1 ...
両方のキーが繰り返されないことをどのように保証できますか... 一意のタプルを形成しています... 真理値表のように一緒に一意の種類。
CREATE UNIQUE INDEX my_index ON tbl_name (fk1, fk2)
一意のインデックスを作成する必要があります:
CREATE UNIQUE INDEX indexName ON thirdtable (fk_first_table, fk_second_table)