Weather Observation Station 5
문제 https://www.hackerrank.com/challenges/weather-observation-station-5/problem?isFullScreen=true Weather Observation Station 5 | HackerRank Write a query to print the shortest and longest length city name along with the length of the city names. www.hackerrank.com 풀이(MSSQL) SELECT TOP 1 CITY, LEN(CITY) FROM STATION ORDER BY 2, 1; SELECT TOP 1 CITY, LEN(CITY) FROM STATION ORDER BY 2 DESC, 1; 해당문제..
2023.12.20