So I have my main with a couple of fields that basically have the same data.
I'll just use a stupid eample below:
Main Table
The above test fields have the same result sets
TestLookUp Table
Should I create a look up table (TestLookUp) for each field (EarTest, EyeTest, MouthTest, NoseTest) or can I create one look up table and link each field to one field on the TestLookUp table?
I know this is a design issue, and I want to avoid unnecessary problems.
I'll just use a stupid eample below:
Main Table
Code:
MaindID
Field1
Field2
Field3
[B]EarTest
EyeTest
MouthTest
NoseTest[/B]
TestLookUp Table
Code:
[U]Test[/U]
Once
Twice
3 Times
I know this is a design issue, and I want to avoid unnecessary problems.