fix
This commit is contained in:
@ -58,4 +58,16 @@ with
|
|||||||
day_avg
|
day_avg
|
||||||
group by t;
|
group by t;
|
||||||
|
|
||||||
|
|
||||||
|
-- 12-Uhr-Werte
|
||||||
|
select
|
||||||
|
date_trunc('day', time)::date as day,
|
||||||
|
avg(temperature)::numeric(10,0) as temperature
|
||||||
|
from room_climate_measurement_t
|
||||||
|
where
|
||||||
|
category = 'Outdoor' and
|
||||||
|
location = 'Outdoor' and
|
||||||
|
extract('hour' from time) = 12 and
|
||||||
|
extract('year' from time) = 2023
|
||||||
|
group by day
|
||||||
|
order by day;
|
||||||
|
Reference in New Issue
Block a user