[HackerRank] Average Population

mzzzi·2022년 4월 21일
0

HackerRank SQL

목록 보기
29/52
post-thumbnail

MySQL > Average Population


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

Input Format

The CITY table is described as follows:


My Answer


SELECT ROUND(AVG(POPULATION))
FROM CITY ;
profile
무럭무럭 성장하라🌳

0개의 댓글