본문 바로가기

SQL/[HackerRank]

[HackerRank/MySQL] Revising Aggregations - Averages

728x90

< Problem >

California 지역의 평균 인구수 구하기

링크:  https://www.hackerrank.com/challenges/revising-aggregations-the-average-function/problem

 

Revising Aggregations - Averages | HackerRank

Query the average population of all cities in the District of California.

www.hackerrank.com


< Code >

SELECT AVG(population)
FROM city
WHERE district = 'California'

 

< Lesson & Learned >

SELECT: 키워드와 함께 검색하고 싶은 속성의 이름을 나열
FROM: 키워드와 함께 검색하고 싶은 속성이 있는 데이블의 이름을 나열
WHERE: 키워드와 함께 비교 연산자(=, <, >=, <>)와 논리 연산자(AND, OR, NOT)를 이용한 검색 조건 제시
AVG: 속성 값의 평균을 검색하기 위한 집계함수

728x90