I've some data set, which has hundreds of parameters (with more coming in)
- If I dump them in one table, it'll probably end up having hundreds of columns (and I am not even sure how many, at this point)
- I could do row based, with a bunch of meta tables, but somehow row based structure feels unintuitive
- One more way would be to keep column based, but have multiple tables (split the tables logically) which seems like a good solution.
Is there any other way to do it? If yes, could you point me to some tutorial? (I am using mysql)
EDIT: based on the answers, I should clarify one thing - updates and deletes are going to be much lesser, than inserts and selects. as it is, selects are going to be the bulk of the operations, so selects have to be fast.