system_id、account_id、または customer_id のいずれかである外部キーを持つ email テーブルがあります。次に、その外部キーのタイプを指定するフィールドを持つことができます。もう 1 つのより複雑な戦略は、email テーブルを保持し、外部キーを保持しないというものです。email_id と外部キーで構成される、email_relation と呼ばれる別のテーブル。そうすれば、3 つのテーブルすべてに 1 つの電子メール アドレスを使用できます。
2 つのテーブルの使用例
system
--------
s1
s2
s3
account
--------
a1
a2
a3
customer
--------
c1
c2
c3
email
------
e1 example1@a.com
e2 example2@a.com
e3 example3@a.com
e4 example4@a.com
email_relation
---------------
email_id foreign_id relation_type
e1 s1 system
e1 a1 account
e1 c1 customer
e2 c1 customer
e3 c2 customer
e4 a3 account
e4 c3 customer
メールアドレスを含む顧客テーブルが必要な場合
select c.customer_id, e.email
from customer c
left join email_relation r on (r.foreign_id = c.customer_id and relation_type = 'customer')
left join email e on (e.email_id = r.email_id)
where r.email_id is not null
システムへのすべての電子メールが必要な場合は、次のこともできます
select e.email
from email e
join email_relation r on (r.email_id = e.email_id and relation_type = "system")
where r.foreign_id = 1