I have a table [Advertiser]
and a table [Ad]
that has a N..M
relationship that an Advertiser
can have many Ads
so that [Ad]
will have a column referncing [Advertiser]
.
An Advertiser
can either be a company or a person and the data entered into the table will differ depending. So my thought was that I should split up the [Advertiser]
table into two tables like [CompanyAdvertiser]
and [PersonAdvertiser]
.
Is it then possible to have a column in [Ad]
having a reference to either [CompanyAdvertiser]
or [PersonAdvertiser]
depending on who should be the Advertiser
?