Last active
July 2, 2017 09:00
-
-
Save mustafaakin/87ee99ceb1b1a526b2a49c47e87c428e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
SELECT | |
room, | |
TUMBLE_END(rowtime, INTERVAL ‘10’ SECOND), | |
AVG(temperature) AS avgTemp | |
FROM sensors | |
GROUP BY | |
TUMBLE(rowtime, INTERVAL ‘10’ SECOND), | |
room |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment