current situation:
I have a table A which has a column. This column should have a foreign key relationship to either C or D
How can I describe this in SQL Definition Language
To be more clear:
C and D are e.g. tables with information about Taxes. But this taxes are not in one table. They are distributed in this two tables.
What I now want ist that the Foreign Key Reference in table A should have a Foreign Key reference at the same time on the same column e.g. A->tax_rate_id to either Table C or D.
Is this possible and how to write the DDL description for it