반응형

@notepad_jj2

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


1. [HackerRank] Revising Aggregations - The Count Function 오라클(Oracle)

 

2. 문제 출처

https://www.hackerrank.com/challenges/revising-aggregations-the-count-function/problem

 

Revising Aggregations - The Count Function | HackerRank

Query the number of cities having populations larger than 100000.

www.hackerrank.com

 

3. 문제

Query a count of the number of cities in CITY having a Population larger than 100,000.

(CITY 테이블에서 인구수가 100,000을 넘는 시티의 수를 count로 구해라)

 

 

4. 풀이

- CITY 테이블에서 POPULATION 수가 100,000 넘는 수를 구하면 된다.

 

5. 소스 코드

SELECT COUNT(*)
  FROM CITY
 WHERE POPULATION > 100000;

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