i can create different table to hold the drop down options for different form or i can create a structure like this to do the same thing.
Table: DropDown
DropDownID, AutoNumber
DropDownOption, Text
Table: DropDownItem
DropDownItemID,AutoNumber
DropDownID, FK DropDown
ItemNr, Number
Item, Text
Sample Data: DownDown
DropDownID,DropDownOption
1,Section
2,Temp
3,Temp Type
Sample Data: DropDownItem
DropDownItemID,DropDownID,ItemNr,Item
1,1,0,Section
2,1,1,Head
3,1,2,Body
4,1,3,Tail
5,2,0,Temp
6,2,1,5
7,2,2,10
8,2,3,15
9,2,4,20
10,3,0,Temp Type
11,3,1,C
12,3,2,F
and so on
Which approach is better in the long run and from administration standpoint.
multiple small table vs One Huge table
Table: DropDown
DropDownID, AutoNumber
DropDownOption, Text
Table: DropDownItem
DropDownItemID,AutoNumber
DropDownID, FK DropDown
ItemNr, Number
Item, Text
Sample Data: DownDown
DropDownID,DropDownOption
1,Section
2,Temp
3,Temp Type
Sample Data: DropDownItem
DropDownItemID,DropDownID,ItemNr,Item
1,1,0,Section
2,1,1,Head
3,1,2,Body
4,1,3,Tail
5,2,0,Temp
6,2,1,5
7,2,2,10
8,2,3,15
9,2,4,20
10,3,0,Temp Type
11,3,1,C
12,3,2,F
and so on
Which approach is better in the long run and from administration standpoint.
multiple small table vs One Huge table