don't delete anything
[zc] / gnuplot / location.sql
1 -- explain (analyze,buffers)
2 select 
3         to_char(time, 'YYYY-MM-DD HH24:MI:SS'), x_axis_angle + axis_offset.x, y_axis_angle + axis_offset.y, sensor_temperature, power_source_voltage, zc.pn
4 from zc
5 join axis_offset on (zc.pn = axis_offset.pn)
6 where zc.pn in (
7 2012230015,
8 2009210010,
9 2008050077,
10 2012230028,
11 2012230011
12 )
13 and time > '2022-01-14 14:00'
14 order by time asc 
15