일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Crawling
- NLP
- to shp
- string to list
- flask
- 알고리즘
- 2164 카드2
- Selenium
- 괄호 문제
- kmeans
- 크롤링
- 백준
- python buildpacks
- clustering
- 혁신성장부문
- 인스타그램
- geoDataFrame
- 웹페이지
- convert to shp
- geopandas
- Merge Repositories
- colab runtime
- Chat-GPT
- 파이썬
- plotly dash
- 코랩 런타임
- 플라스크
- Python
- 해시태그
- 셀레니움
Archives
- Today
- Total
코딩코딩코딩
[HackerRank] Average Population of Each Continent 본문
MySQL/Problem Solving
[HackerRank] Average Population of Each Continent
hanshow113 2022. 2. 6. 19:52
SELECT COUNTRY.Continent
, FLOOR(AVG(CITY.population))
FROM CITY
INNER JOIN COUNTRY ON CITY.CountryCode = COUNTRY.CODE
GROUP BY COUNTRY.Continent
'MySQL > Problem Solving' 카테고리의 다른 글
[LeetCode] 183. Customers Who Never Order (2) | 2022.02.06 |
---|---|
[HackerRank] African Cities (0) | 2022.02.06 |
[HackerRank] Population Census (0) | 2022.02.06 |
[LeetCode] 1179.Reformat Department Table, MySQL 피봇테이블 (0) | 2022.02.06 |
[HackerRank] Type of Triangle (0) | 2022.01.18 |
Comments