mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-13 17:22:54 -05:00
5 lines
153 B
SQL
5 lines
153 B
SQL
SELECT WindDirection, COUNT(WindDirection) AS Count
|
|
FROM Reading
|
|
WHERE Timestamp BETWEEN @Start AND @End
|
|
AND WindDirection != -1
|
|
GROUP BY WindDirection |