Skip to content

Commit 0c24884

Browse files
committed
Used WHERE instead of BETWEEN
1 parent 18d33d9 commit 0c24884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SQL/03. Aggregation/010. Weather Observation Station 13.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
SELECT ROUND(SUM(Lat_N), 4)
66
FROM STATION
7-
WHERE Lat_N BETWEEN 38.7880 AND 137.2345;
7+
WHERE Lat_N > 38.7880 AND Lat_N < 137.2345;

0 commit comments

Comments
 (0)