-
-
Save parzibyte/e5c3b6ad511311bd6db7b28361285dbc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Mostrar el promedio de la temperatura pero solo para el día 24 de diciembre del 2020 | |
SELECT AVG(temperature) | |
FROM dht_log | |
WHERE date >= "2020-12-24 00:00:00" | |
AND date <= "2020-12-24 23:59:59"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment