본문 바로가기

SQL/[HackerRank]

[HackerRank/MySQL] Average Population

728x90

< Problem >

모든 도시의 평균 인구수 구하기

링크:  https://www.hackerrank.com/challenges/average-population/problem

 

Average Population | HackerRank

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

www.hackerrank.com


< Code >

SELECT ROUND(AVG(population))
FROM city

 

SELECT ROUND(AVG(population), 0)
FROM city

 

< Lesson & Learned >

SELECT: 키워드와 함께 검색하고 싶은 속성의 이름을 나열
FROM: 키워드와 함께 검색하고 싶은 속성이 있는 데이블의 이름을 나열
AVG: 속성 값의 평균을 검색하기 위한 집계함수
ROUND(A, B): A의 소수 B+1번째 자리에서 반올림

728x90