일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- eda
- Python
- DFS
- TEAM-EDA
- 파이썬
- TEAM EDA
- 한빛미디어
- Recsys-KR
- 알고리즘
- 입문
- 3줄 논문
- 나는 리뷰어다
- 코딩테스트
- 스택
- Segmentation
- 나는리뷰어다
- 프로그래머스
- 튜토리얼
- pytorch
- Machine Learning Advanced
- 협업필터링
- MySQL
- Semantic Segmentation
- hackerrank
- Object Detection
- 큐
- 추천시스템
- 엘리스
- Image Segmentation
- DilatedNet
- Today
- Total
목록MySQL (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;