Category: SQL

0

Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION

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. ———-SOLUTION———- SELECT DISTINCT(CITY) FROM STATION WHERE...

0

Query a list of CITY and STATE from the STATION table

Query a list of CITY and STATE from the STATION table. The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude.   ———-SOLUTION———- SELECT CITY,STATE FROM STATION;