I have the following query to show the average temperature and relative humidity of the last two nights from the current date:
SELECT DATE(date) AS Fecha,
ROUND(AVG(temperature),2) AS Temperatura,
ROUND(AVG(humidity),2)...
asked by
29.09.2016 / 14:25