What's the best practice for a scenario where, if you dont split data up into multiple tables, you'll end up with a table consisting of more than 100 columns? The data is of the one-to-one relation.
Asked
Active
Viewed 79 times
0
-
1If you have 100 columns that describe an entity, then put them in a single table. Seems unlikely for a normalized data structure, but quite possible for some types of tables. – Gordon Linoff Dec 07 '16 at 13:07
-
Possible Duplicate http://stackoverflow.com/q/12318870/1048425 Essentially, it depends on your exact situation. – GarethD Dec 07 '16 at 13:09
-
1It's basically info about a vehicle, then vehicle is transporing different types of cargo, it has departuring times, arrival times etc. So I guess the best way would be to divide that info into different tables, then. – fjompen Dec 07 '16 at 13:17