0
would like to know if it is possible for a foreign key to reference more than one table, for example:
client table
PK - client code
- client name
employee table
PK - official code
- official name
contact table
- telephone
- e-mail
FK - contact code, client table reference(client code), employee table reference (employee code)
I see no sense in such a relationship. Maybe you should consider customer and employee tables as partitioning a single table.
– user4552