Weather Observation Station 3

  • + 0 comments

    Query a list of CITY names from STATION for cities that have an even ID number. Print the results in any order, but exclude duplicates from the answer. SELECT DISTINCT id, sity FROM Station; What's wrong?