일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 플라스크
- convert to shp
- flask
- string to list
- to shp
- NLP
- 파이썬
- 웹페이지
- Crawling
- 셀레니움
- 알고리즘
- python buildpacks
- 2164 카드2
- Chat-GPT
- colab runtime
- plotly dash
- Merge Repositories
- kmeans
- 백준
- Selenium
- 해시태그
- 혁신성장부문
- 코랩 런타임
- geoDataFrame
- 크롤링
- Python
- 괄호 문제
- geopandas
- 인스타그램
- clustering
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