반응형

@notepad_jj2

츄르사려고 코딩하는집사입니다.


1. [HackerRank] Average Population 오라클(Oracle)

 

2. 문제 출처

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

 

3. 문제

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

Input Format

The CITY table is described as follows: 

 

4. 풀이

- CITY 테이블에서 인구(POPULATION)의 평균을 구하여 소수점을 내리고 출력하라.

 

5. 소스 코드

 

SELECT TRUNC(AVG(POPULATION))
FROM CITY;

반응형
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기