Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Basic Select/Weather-Observation-Station-3.sql
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# Author: Thomas George Thomas
Select distinct city from station where ID%2=0;
Select distinct city from station where ID%2=0;
#Author : Udayan
SELECT CITY FROM STATION WHERE ID MOD 2 = 0 GROUP BY CITY HAVING COUNT(*) >= 1;
#another
SELECT CITY FROM STATION WHERE ID % 2 = 0 GROUP BY CITY;