Skip to main content

Weather Observation Station 3 Hackerrank Solution SQL | Hackerrank SQL

 Weather Observation Station 3 Hackerrank Solution SQL

For Explanation Watch Video:



Code:
select distinct city from station
where mod(id,2)=0;

Comments