M
MLT
I have a table with 3 columns: Thermometer_ID, Time_of_Reading_,
Value_of_Reading. The thermometers broadcast a time and temperature
reading every 5 minutes into this database. I'm trying to analyze the
data by Thermometer_ID. For example, the maximum temperature at
Thermometer #1. I can do this pretty easily with a query. Where I
get lost is when I want to be able to display in the results what time
the particular reading occured.
I think what might be happening is that when I query just [group by]
Thermometer_ID and [maximum] Value_of_Reading, that works great, but
when you throw Time_of_Reading into the query, it ends up just
returning all the values in the original table as all maximums because
every Value_of_Reading has its own unique Thermomter_ID and
Time_of_Reading.
Any suggestions?
Thanks!
Value_of_Reading. The thermometers broadcast a time and temperature
reading every 5 minutes into this database. I'm trying to analyze the
data by Thermometer_ID. For example, the maximum temperature at
Thermometer #1. I can do this pretty easily with a query. Where I
get lost is when I want to be able to display in the results what time
the particular reading occured.
I think what might be happening is that when I query just [group by]
Thermometer_ID and [maximum] Value_of_Reading, that works great, but
when you throw Time_of_Reading into the query, it ends up just
returning all the values in the original table as all maximums because
every Value_of_Reading has its own unique Thermomter_ID and
Time_of_Reading.
Any suggestions?
Thanks!