Hey guys I could use some help.
I have a situation where i have 1- 100 fields of data coming in on a timed basis. Average is 10 at a time.
Should I do this:
id|field|value|timestamp
which means each time I recieve data I get 1-100 records,
or should I do this:
id|field 1 |Field 2| ......|Timestamp
in which case I get 1 record but an average of 90 empty fields.
so are a lot of small rows (4 fields) better than a much smaller amount of large rows (103 fields) that have a lot of empty fields?
Just making sure everyone understands what I'm ending up with.
any advice is appreciated.
I have a situation where i have 1- 100 fields of data coming in on a timed basis. Average is 10 at a time.
Should I do this:
id|field|value|timestamp
which means each time I recieve data I get 1-100 records,
or should I do this:
id|field 1 |Field 2| ......|Timestamp
in which case I get 1 record but an average of 90 empty fields.
so are a lot of small rows (4 fields) better than a much smaller amount of large rows (103 fields) that have a lot of empty fields?
Just making sure everyone understands what I'm ending up with.
any advice is appreciated.