Notice
Recent Posts
Recent Comments
Link
forest_moon
[hackerrank, SQL]Average Population of Each Continent 본문
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
country.continent ,
FLOOR(AVG(city.population))
FROM
city
JOIN country ON
country.code = city.countrycode
Group by
country.continent
;
**처음에 소수점이 나오길레 ROUND 로 해결 했는데 답이 안나오길레 문제 다시 보니까 '정 수' ! 바로구글링 >> FLOOR !
FLOOR 함수는 소수점 첫째 자리에서 버림하는 함수로, 주어진 숫자와 가장 근접한 작은 정수를 출력한다.
ROUND 함수와는 다르게, 매개 값을 받아 버림할 자릿수를 정할 수는 없다.
'알고리즘' 카테고리의 다른 글
[hackerrank, SQL]The Report (0) | 2023.02.08 |
---|---|
[hackerrank, SQL]African Cities (0) | 2023.02.08 |
짝수 홀수 개수 (0) | 2023.02.05 |
직각삼각형 출력하기 (0) | 2023.02.05 |
문자열 뒤집기 (0) | 2023.02.05 |