Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@parzibyte

parzibyte/4.sql Secret

Created December 29, 2020 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/cb6db2b6edf3662db2600c05fc6d779f to your computer and use it in GitHub Desktop.
Save parzibyte/cb6db2b6edf3662db2600c05fc6d779f to your computer and use it in GitHub Desktop.
# Mostrar la fecha, temperatura y humedad de la fila en la que se registró la menor temperatura
SELECT date, temperature, humidity
FROM dht_log
ORDER BY temperature DESC
LIMIT 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment