[HackerRank] Average Population of Each Continent

당당·2023년 7월 17일
0

HackerRank

목록 보기
13/27

https://www.hackerrank.com/challenges/average-population-of-each-continent/problem

📔문제

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.

The CITY and COUNTRY tables are described as follows:


🧮분야

  • JOIN

📃SQL 코드

select continent, floor(avg(city.population))
from city inner join country
on city.countrycode=country.code
group by continent;

📰출력 결과


📂고찰

citycountry 테이블을 조인해서, 각 continent평균 population을 구해서 내림하라고 했다.

그러므로 floor()함수를 사용했다.

profile
MySQL DBA 신입

1개의 댓글

comment-user-thumbnail
2023년 7월 17일

저도 개발자인데 같이 교류 많이 해봐요 ㅎㅎ! 서로 화이팅합시다!

답글 달기