일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- SQL
- MySQL
- Python
- FullyConnectedLayer
- Stack
- select
- Numpy
- 딥러닝
- Word2vec
- 프로그래머스
- skip-gram
- 파이썬
- DeepLearning
- algorithm
- 자연어처리
- Heap
- que
- stak
- dl
- Programmers
- PPMI
- sort
- backward
- hash
- 신경망
- kakao
- boj
- affine
- Sigmoid
- CBOW
Archives
- Today
- Total
혜온의 이것저것
[HackerRank] Revising Aggregations- Averages (MySQL) 본문
문제
Query the average population of all cities in CITY where District is California.
Input Format
The CITY table is described as follows:
풀이
select avg(population)
from city
where district = 'California'
'Data Analysis > SQL' 카테고리의 다른 글
[HackerRank] Japan Population (MySQL) (0) | 2022.08.12 |
---|---|
[HackerRank] Average Population (0) | 2022.08.12 |
[HackerRank] Revising Aggregations- The Sum Function (MySQL) (0) | 2022.08.12 |
[HackerRank] Revising Aggregations- The Count Function (MySQL) (0) | 2022.08.12 |
[HackerRank] New Companies (MySQL) (0) | 2022.08.11 |
Comments