I'm designing a MySQL dbase (my first) to support the webpage I'm designing (also my first!). Somewhere in this dbase I need to store something like 50 short lists of values (between 5 and 20 values each).
I suspect the relational DB purists would say that I should create 50 seperate tables to store these lists in, structured like:
Index | Value
Would it be more practical to create a single "Values" table structured like:
Index | ValType | Value
and keep all the lists in there?
Any thoughts on the pros/cons of each approach?
VBAjedi
I suspect the relational DB purists would say that I should create 50 seperate tables to store these lists in, structured like:
Index | Value
Would it be more practical to create a single "Values" table structured like:
Index | ValType | Value
and keep all the lists in there?
Any thoughts on the pros/cons of each approach?
VBAjedi