offsets and graphs for 2OI-0000131 and 2OI-0000132
[zc] / gnuplot / by_day.sql
1 select 
2 to_char(min(time), 'YYYY-MM-DD HH24') as time,
3 avg(x_axis_angle) ,
4 avg(y_axis_angle) - ( ( (select avg(sensor_temperature) from zc where pn = 2008050087) - avg(sensor_temperature) ) * 0.0001 ),
5 avg(sensor_temperature) 
6 from zc
7 where pn = 2008050087 -- and time > now() - interval '24 hours'
8 group by to_char(time, 'YYYY-MM-DD HH24')
9 order by time asc 
10