일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Dynamic Programming
- 그리디
- data_engineer
- telegram
- hackerrank
- Spark
- 2023년 목표
- airflow architecture
- MySQL
- airflow webserver
- SQL
- datacamp
- terraform
- dsf
- Data Engineering
- 백준온라인저지
- 데이터 엔지니어
- leetcode
- docker image
- BOT
- 백준 온라인 저지
- 알고리즘
- Python
- 빅데이터를 지탱하는 기술
- docker
- 프로그래머스
- delete join
- Airflow
- docker container
- Pseudo Lab
- Today
- Total
목록hackerrank (21)
Lim Seunghyun Space
문제 : 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 테이블에서 CITY 값이 a,e,i,o,u 로 시작하는 데이터를 조회 조회하는 CITY는 중복제거 풀이 (MySQL) SELECT DISTINCT(CITY) FROM STATION WHERE CITY LIKE "a%" or CITY LIKE "e%" or CITY LIKE "i%"..
문제 : 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 문제 해설 CITY 이름이 가장 긴 것과 가장 작은 것을 조회 만일 이름의 길이가 같다면 알파벳 순으로 정렬 후 가장 먼저 오는 것을 조회 풀이 (MySQL) SELECT CITY, LENGTH(CITY) FROM STATION ORD..
문제 : 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 문제 해설 전체 CITY의 수에서 중복을 제거한 CITY의 수의 차이를 조회 풀이 (MySQL) SELECT COUNT(CITY) - COUNT(DISTINCT(CITY)) FROM STATION
문제 : 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 번호가 짝수인 NAME을 조회 결과값에서 중복인 데이터는 제외 풀이 (MySQL) SELECT DISTINCT CITY FROM STATION WHERE ID % 2 = 0;
문제 : 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 문제 해설 CITY 테이블에서 CITY 와 STATE를 조회 풀이 (MySQL) SELECT CITY, STATE FROM STATION;
문제 : https://www.hackerrank.com/challenges/japanese-cities-name/problem?isFullScreen=true Japanese Cities' Names | HackerRank In this challenge, you will query a list of all the Japanese cities' names. www.hackerrank.com 문제 해설 CITY 테이블에서 Japanese cities 조회를 위해 COUNTRYCODE가 JPN 데이터를 조회 OUTPUT 조건은 NAME만 조회 풀이 (MySQL) SELECT NAME FROM CITY WHERE COUNTRYCODE = "JPN";
문제 : 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 테이블에서 Japanese City만 찾기 위해 COUNTRYCODE가 JPN인 데이터를 조회 OUTPUT 조건은 모든 칼럼에 대해 조회 풀이 (MySQL) SELECT * FROM CITY WHERE COUNTRYCODE = "JPN";
문제 : 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인 데이터 SELECT OUTPUT 조건은 모든 칼럼에 대해서 조회 풀이 (MySQL) SELECT * FROM CITY WHERE ID = 1661;
문제 : 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 테이블을 전체 조회 풀이 (MySQL) SELECT * FROM CITY;
문제 : 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 테이블에서 populations이 120,000보다 크고 CountryCode가 USA인 데이터 SELECT OUTPUT 조건은 NAME 만 출력 풀이 (MySQL) SELECT NAME FROM CITY WHERE POPULATION > 120000 AND C..