반응형

@notepad_jj2

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


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

 

2. 문제 출처

https://www.hackerrank.com/challenges/population-density-difference/problem

 

Population Density Difference | HackerRank

Query the difference between the maximum and minimum city populations in CITY.

www.hackerrank.com

 

3. 문제

Query the difference between the maximum and minimum populations in CITY.

Input Format

The CITY table is described as follows: 

 

4. 풀이

- CITY 테이블에서 인구(POPULATION)의 최댓값에서 최솟값을 뺀 결과를 출력하면 된다.

 

5. 소스 코드

 

SELECT MAX(POPULATION) - MIN(POPULATION)
FROM CITY;

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