일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 큐
- 협업필터링
- 코딩테스트
- Machine Learning Advanced
- Image Segmentation
- MySQL
- Recsys-KR
- 알고리즘
- 엘리스
- 나는리뷰어다
- Segmentation
- 나는 리뷰어다
- eda
- 추천시스템
- 입문
- Object Detection
- hackerrank
- 튜토리얼
- pytorch
- Python
- TEAM-EDA
- 스택
- DFS
- 프로그래머스
- 3줄 논문
- TEAM EDA
- DilatedNet
- 한빛미디어
- Semantic Segmentation
- 파이썬
- Today
- Total
목록hackerrank (16)
TEAM EDA
Query the Name of any student in STUDENTS who scored higher than 75 Marks. Order your output by the last three characters of each name. If two or more students both have names ending in the same last three characters (i.e.: Bobby, Robby, etc.), secondary sort them by ascending ID. Input Format The STUDENTS table is described as follows: The Name column only contains uppercase (A-Z) and lowercase..
The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude. Q1. Query a list of CITY and STATE from the STATION table. SELECT CITY, STATE FROM STATION; Q3. 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 CITY FROM STATION WHERE ID..
Query the names of all the Japanese cities in the CITY table. The COUNTRYCODE for Japan is JPN. The CITY table is described as follows: SELECT NAME FROM CITY WHERE COUNTRYCODE = 'JPN';
Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN. The CITY table is described as follows: SELECT * FROM CITY WHERE COUNTRYCODE = 'JPN';
Query all columns for a city in CITY with the ID 1661. The CITY table is described as follows: SELECT * FROM CITY WHERE ID = 1661;