私はproduct
テーブルを持っています:
ProdId(PK)
Prod1
Prod2
Prod3
Prod4
およびCertification
テーブル:
Certification(PK):
Cert1
Cert2
Cert3
次の関係(疑似テーブル)をモデル化するにはどうすればよいですか?
ProdwithCertId(PK) ProdwithCert
ProdwithCert1 "Prod1 with Cert1"
ProdwithCert2 "Prod1 with Cert1, Cert2"
ProdwithCert3 "Prod1 with Cert1, Cert2, Cert3"
ProdwithCert4 "Prod2 with Cert1, Cert2"
ProdwithCert5 "Prod2 with Cert1, Cert2, Cert3"
上記の表のように、重複することはできませんProdwithCert6 - "Prod2 with Cert1, Cert2, Cert3"
。