Suppose that we have a table for saving human-being data (Human Table) The human table has a column named "relatives" in order to save what type of relatives the human is supporting. The relatives column can have 2 values: 1: means that "close relative" 2: means that "far relative"
Now, imagine that user can select one choice between close and far. When chooses "close" he/she can select one or more between "Sister", "Brother", "Father", "Mother" and save them. But when he/she chooses "far", then it's possible to select one or more items between "uncle", "aunt", "nephew" ,...
Now my question is: how the relations and design of tables could be? I use SQL Server 2008.
Thank you