In SQL Server 2008 and given TableA(A_ID, A_Data), TableB(B_ID, B_Data), and ViewC(A_or_B_ID, A_or_B_Data), is it possible to define TableZ(A_or_B_ID, Z_Data) such that Z's A_or_B_ID column is constrained to the values found in ViewC? Can this be done with a foreign key against the view?
|
|
|
|
|
|
|
You can't reference a view in a foreign key. |
||
|
|
|
|
Sorry, you cannot FK to a view in SQL Server. |
||
|
|
|
|
If you really need 1) Add nullable 2) Add a TableName column to table z, constrained to contain either A or B. now create In both cases, you now have (Thanks to comment for fixing my formatting) |
|||
|
