Hello,
I have a table that contains many value for many sensors. Here is an short exemple :
Also I have a table containing all sensors (ID, Name, Description, ...)
From the first table I want to sort data as :
Is it possible and how ?
Many thanks.
I have a table that contains many value for many sensors. Here is an short exemple :
Code:
[DATE, SENSOR_ID, VALUE]
...
"2006-01-01 00:00:00", 8, 8.76
"2006-01-01 00:00:00", 10, 8.41
"2006-01-01 00:00:00", 11, 0.45
"2006-01-01 00:00:00", 12, 66.63
"2006-01-01 00:00:00", 13, 5.04
"2006-01-01 00:00:00", 14, 149.72
"2006-01-01 00:05:00", 8, 8.76
"2006-01-01 00:05:00", 9, 0.41
"2006-01-01 00:05:00", 10, 8.41
"2006-01-01 00:05:00", 11, 0.47
"2006-01-01 00:05:00", 13, 5.02
...
From the first table I want to sort data as :
Code:
[DATE, SENSOR 1, SENSOR 2, SENSOR 3, SENSOR 4, ... ]
2006-01-01 00:00:00, 8.76, 8.41, 0.45, 66.63, 5.04, 149.72
2006-01-01 00:05:00, 8.76, 8.41, 8.47, NULL, 5.02, ...
Is it possible and how ?
Many thanks.