일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Where
- 정규표현식
- 최강의 인생
- 자바스크립트
- 프로그래머스
- Developer_JoyKim
- Hackerrank
- join
- select
- 개발자의 책장
- Algorithms
- MySQL
- SQL
- 코플릿
- 코딩공부
- Programmers
- 알고리즘
- array.push()
- 코드스테이츠
- array
- node.js
- JavaScript
- array.slice()
- for문
- 개발자_조이킴
- 블록체인
- 배열
- 재귀함수
- 역행자
- 코딩테스트
Archives
- Today
- Total
CodingSpace
[HackerRank/SQL] Revising Aggregations - The Count Function 본문
HackerRank/SQL
[HackerRank/SQL] Revising Aggregations - The Count Function
개발자_조이킴 2022. 7. 5. 09:25Problem. Revising Aggregations - The Count Function
Link.
Revising Aggregations - The Count Function | HackerRank
Query the number of cities having populations larger than 100000.
www.hackerrank.com
Description.
Query a count of the number of cities in CITY having a Population larger than 100,000.
Key Point.
SELECT,
COUNT,
WHERE,
My Answer.
SELECT COUNT(ID)
FROM CITY
WHERE POPULATION > 100000
References.
'HackerRank > SQL' 카테고리의 다른 글
[HackerRank/SQL] Revising Aggregations - Averages (0) | 2022.07.12 |
---|---|
[HackerRank/SQL] Revising Aggregations - The Sum Function (0) | 2022.07.10 |
[HackerRank/SQL] Basic SELECT - Employee Salaries (0) | 2022.07.01 |
[HackerRank/SQL] Basic Join - The Report (0) | 2022.06.27 |
[HackerRank/SQL] Basic Join - Average Population of Each Continent (0) | 2022.06.08 |
Comments