https://www.hackerrank.com/challenges/weather-observation-station-6/problem?isFullScreen=true Weather Observation Station 6 | HackerRank Query a list of CITY names beginning with vowels (a, e, i, o, u). www.hackerrank.com STATION 테이블에서 a, e, i, o, u로 시작하는 중복되지 않게 CITY들을 출력하는 문제입니다. 아래는 코드입니다. 더보기 1 2 3 4 5 6 7 SELECT DISTINCT CITY FROM STATION WHERE (CITY LIKE 'a%' OR CITY LIKE 'i%' OR CITY LIKE..
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 STATION 테이블에서 가장 짧은 CITY 이름 하나와 가장 긴 이름 하나를 뽑아 해당하는 CITY에 길이와 함께 출력하는 문제입니다. 같은 길이의 도시가 존재 할 경우 사전순으로 빠른순서인 도시를 출력합니다. 아래는 코드입니다. 더보기 1 ..
https://www.hackerrank.com/challenges/weather-observation-station-4/problem?isFullScreen=true Weather Observation Station 4 | HackerRank Find the number of duplicate CITY names in STATION. www.hackerrank.com STATION 테이블에서 전체 CITY 수 - 중복되지 않는 CITY수를 구하는 문제입니다. 아래는 코드입니다. 더보기 1 2 SELECT COUNT(CITY) - COUNT(DISTINCT CITY) FROM STATION cs
https://www.hackerrank.com/challenges/weather-observation-station-3/problem?isFullScreen=true Weather Observation Station 3 | HackerRank Query a list of unique CITY names with even ID numbers. www.hackerrank.com STATION 테이블에서 ID가 짝수이면서 CITY 이름이 중복되지 않는 CITY 이름을 출력하는 문제입니다. 아래는 코드입니다. 더보기 1 2 3 SELECT DISTINCT CITY FROM STATION WHERE (ID % 2) = 0 cs
https://www.hackerrank.com/challenges/weather-observation-station-2/problem?isFullScreen=true Weather Observation Station 2 | HackerRank Write a query to print the sum of LAT_N and the sum of LONG_W separated by space, rounded to 2 decimal places. www.hackerrank.com STATION 테이블의 LAT_N의 값을 모두 더한값을 소수 둘째자리까지 출력하고, LONG_W의 값을 모두 더한값을 소수 둘째자리까지 출력하는 문제입니다. 아래는 코드입니다. 더보기 1 2 SELECT ROUND(SUM(LAT_N),..
https://www.hackerrank.com/challenges/weather-observation-station-1/problem?isFullScreen=true Weather Observation Station 1 | HackerRank Write a query to print the CITY and STATE for each attribute in the STATION table. www.hackerrank.com STATION 테이블에서 CITY와 STATE 속성(칼럼)을 출력하는 문제입니다. 아래는 코드입니다. 더보기 1 2 SELECT CITY, STATE FROM STATION cs
https://www.hackerrank.com/challenges/japanese-cities-attributes/problem?isFullScreen=true Japanese Cities' Attributes | HackerRank Query the attributes of all the cities in Japan. www.hackerrank.com CITY 테이블에서 COUNTRTCODE가 JPN인 모든 속성(칼럼)을 출력하는 문제입니다. 아래는 코드입니다. 더보기 1 2 3 SELECT * FROM CITY WHERE COUNTRYCODE = 'JPN' cs
https://www.hackerrank.com/challenges/select-by-id/problem?isFullScreen=true Select By ID | HackerRank Query the details of the city with ID 1661. www.hackerrank.com CITY 테이블에서 ID가 1661인 모든 칼럼을 출력하는 문제입니다. 아래는 코드입니다. 더보기 1 2 3 SELECT * FROM CITY WHERE ID = '1661' cs
https://www.hackerrank.com/challenges/select-all-sql/problem?isFullScreen=true Select All | HackerRank Query all columns for every row in a table. www.hackerrank.com CITY 테이블의 모든 칼럼을 출력하는 문제입니다. 아래는 코드입니다. 더보기 1 2 SELECT * FROM CITY cs
https://www.hackerrank.com/challenges/revising-the-select-query-2/problem?isFullScreen=true Revising the Select Query II | HackerRank Query the city names for all American cities with populations larger than 120,000. www.hackerrank.com CITY 테이블에서 POPULATION이 120,000을 초과한 NAME을 출력하는 문제입니다. 아래는 코드입니다. 더보기 1 2 3 SELECT NAME FROM CITY WHERE POPULATION > 120000 AND COUNTRYCODE = 'USA' cs