Weather Observation Station 5

  • + 1 comment

    UNION is working fine

    (SELECT a,b from (SELECT CITY as a,char_length(CITY) as b from STATION order by b asc, a asc ) as k LIMIT 1) UNION (SELECT a,b from (SELECT CITY as a,char_length(CITY) as b from STATION order by b desc, a asc ) as k LIMIT 1);