일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- seaborn
- SQL
- hackerrank
- 데이터분석
- 파이썬
- Round
- 다중 JOIN
- matplotlib
- 데이터시각화
- not in
- solvesql
- 결측값
- 머신러닝
- 데이터리안 웨비나
- join
- 그로스해킹
- pandas
- SUM
- 전처리
- SQLite
- MySQL
- 프로그래머스
- airflow.cfg
- having
- Limit
- GROUPBY
- PostgreSQL
- TRUNCATE
- airflow 설치
- Oracle
Archives
- Today
- Total
Milky's note
[HackerRank](E) Average Population 본문
https://www.hackerrank.com/challenges/average-population/problem?isFullScreen=true
[문제]
Query the average population for all cities in CITY, rounded down to the nearest integer.
Input Format
The CITY table is described as follows:
[답]
-mysql
select round(avg(population)) from city
바로 다음 문제에서 round가 나오다니 ...
이번 문제는 소수점을 없애고 출력해야해서 round 함수의 소수점자리수를 정해주는 두번 째 파라미터의 값을 설정하지 않았다.
그랬더니 정수형으로 출력되었다.
'SQL > SQL 코딩 테스트-HackerRank' 카테고리의 다른 글
[HackerRank](E) Population Density Difference (0) | 2022.03.25 |
---|---|
[HackerRank](E) Japan Population (0) | 2022.03.25 |
[HackerRank](E) Revising Aggregations - Averages (0) | 2022.03.25 |
[HackerRank](E) Revising Aggregations - The Sum Function (0) | 2022.03.25 |
[HackerRank](E) Revising Aggregations - The Count Function (0) | 2022.03.25 |
Comments