일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 나는리뷰어다
- 입문
- 한빛미디어
- 프로그래머스
- Segmentation
- Object Detection
- 협업필터링
- MySQL
- pytorch
- DFS
- eda
- 스택
- 큐
- Python
- Semantic Segmentation
- TEAM-EDA
- 3줄 논문
- 나는 리뷰어다
- hackerrank
- 알고리즘
- Image Segmentation
- 코딩테스트
- 엘리스
- 튜토리얼
- Machine Learning Advanced
- 파이썬
- 추천시스템
- Recsys-KR
- DilatedNet
- TEAM EDA
- Today
- Total
목록EDA Study (202)
TEAM EDA
Given the CITY and COUNTRY tables, query the names of all the continents (COUNTRY.Continent) and their respective average city populations (CITY.Population) rounded down to the nearest integer. Note: CITY.CountryCode and COUNTRY.Code are matching key columns. Input Format The CITY and COUNTRY tables are described as follows: 풀이 SELECT O.CONTINENT, FLOOR(AVG(C.POPULATION)) FROM CITY AS C JOIN COU..
Given the CITY and COUNTRY tables, query the names of all cities where the CONTINENT is 'Africa'. Note: CITY.CountryCode and COUNTRY.Code are matching key columns. Input Format The CITY and COUNTRY tables are described as follows: 풀이 SELECT C.NAME FROM CITY AS C JOIN COUNTRY AS O ON C.COUNTRYCODE = O.CODE WHERE O.CONTINENT = 'Africa';
Given the CITY and COUNTRY tables, query the sum of the populations of all cities where the CONTINENT is 'Asia'. Note: CITY.CountryCode and COUNTRY.Code are matching key columns. Input Format The CITY and COUNTRY tables are described as follows: 풀이 SELECT SUM(C.POPULATION) FROM CITY AS C JOIN COUNTRY AS O ON C.COUNTRYCODE = O.CODE WHERE O.CONTINENT = 'Asia';
Write a query that prints a list of employee names (i.e.: the name attribute) for employees in Employee having a salary greater than $2000 per month who have been employees for less than 10 months. Sort your result by ascending employee_id. Input Format The Employee table containing employee data for a company is described as follows: where employee_id is an employee's ID number, name is the..
Write a query that prints a list of employee names (i.e.: the name attribute) from the Employee table in alphabetical order. Input Format The Employee table containing employee data for a company is described as follows: where employee_id is an employee's ID number, name is their name, months is the total number of months they've been working for the company, and salary is their monthly ..
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';