I need to have multiple foreign keys on one column, can Designer do this?..
Basically I've a table that needs to link to three other tables. As far as I can tell Designer will only let me have the foreign keys on seperate columns;
Column_1 - FK1
Column_2 - FK2
Column_3 - FK3
I think it's a much better database design is to have all three link to one column and have a Type column denoting which table to references
Column_1 - FK1, FK2, FK3
Column_2 - Type (FK1, FK2, FK3)