Milky's note

[HackerRank](E) Average Population 본문

SQL/SQL 코딩 테스트-HackerRank

[HackerRank](E) Average Population

밀뿌 2022. 3. 25. 16:03

https://www.hackerrank.com/challenges/average-population/problem?isFullScreen=true 

 

Average Population | HackerRank

Query the average population of all cities, rounded down to the nearest integer.

www.hackerrank.com

 

 

[문제]

Query the average population for all cities in CITY, rounded down to the nearest integer.

Input Format

The CITY table is described as follows: 

 

 

[답]

-mysql

select round(avg(population)) from city

바로 다음 문제에서 round가 나오다니 ... 

이번 문제는 소수점을 없애고 출력해야해서 round 함수의 소수점자리수를 정해주는 두번 째 파라미터의 값을 설정하지 않았다.

그랬더니 정수형으로 출력되었다.

Comments