Uploaded by Siddu Jangala

Weather Observation Station 6 HackerRank

advertisement
2/20/2019
Weather Observation Station 6 | HackerRank
1

20 more points to get your first star!
Weather Observation Station 6 
Problem
Submissions

Rank: 301673 | Points: 60/80

Sql
Leaderboard
Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates.
Input Format
The STATION table is described as follows:
where LAT_N is the northern latitude and LONG_W is the western longitude.
Current Buffer (saved locally, editable)
1▾
2
3
4
 
/*
Enter your query here.
*/
select distinct city from station where city
MySQL

 
like '[AEIOU]%[AEIOU]';

https://www.hackerrank.com/challenges/weather-observation-station-6/problem
1/2
2/20/2019
Weather Observation Station 6 | HackerRank
Line: 1 Col: 1
 Upload Code as File
Run Code
Submit Code
Wrong Answer :(
1/1 test case failed
Sample Test case 0 
Compiler Message
Wrong Answer
Your Output (stdout)
~ no response on stdout ~
Contest Calendar | Blog | Scoring | Environment | FAQ | About Us | Support | Careers | Terms Of Service |
Privacy Policy | Request a Feature

https://www.hackerrank.com/challenges/weather-observation-station-6/problem
2/2
Download