QUESTION POSED ON: 15 April 2008
Quick question about referential integrity:
Let's say I have 4 tables:
A table has NAME
B table has NAME, CODE
C table has CODE
D table has NAME, CODE, ELSE
A (NAME) is referenced by B (NAME) and C (CODE) is referenced by B (CODE)
If I reference B (NAME, CODE) from D, do I need to reference A (NAME) and C (CODE) as well (from D)?
|