| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 추천시스템
- Python
- Machine Learning Advanced
- DFS
- 스택
- 나는리뷰어다
- TEAM-EDA
- Recsys-KR
- DilatedNet
- TEAM EDA
- 튜토리얼
- 큐
- pytorch
- Semantic Segmentation
- 파이썬
- 3줄 논문
- 협업필터링
- 알고리즘
- Segmentation
- 한빛미디어
- MySQL
- hackerrank
- Image Segmentation
- 엘리스
- 프로그래머스
- Object Detection
- eda
- 코딩테스트
- 입문
- 나는 리뷰어다
- Today
- Total
목록전체 글 (287)
TEAM EDA
You are given two tables: Students and Grades. Students contains three columns ID, Name and Marks. Grades contains the following data: Ketty gives Eve a task to generate a report containing three columns: Name, Grade and Mark. Ketty doesn't want the NAMES of those students who received a grade lower than 8. The report must be in descending order by grade -- i.e. higher grades are entered fir..
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..