Input Format
The CITY table is described as follows:
Q1. Query the total population of all cities in CITY where Districtis California.
SELECT SUM(POPULATION) FROM CITY
WHERE DISTRICT = 'California'
Q2. Query the average population of all cities in CITY where District is California.
SELECT AVG(POPULATION) FROM CITY
WHERE DISTRICT = 'California'
Q3. Query the average population for all cities in CITY, rounded down to the nearest integer.
SELECT FLOOR(AVG(POPULATION)) FROM CITY
Q4. Query the sum of the populations for all Japanese cities in CITY. The COUNTRYCODE for Japan is JPN.
SELECT SUM(POPULATION) FROM CITY
WHERE COUNTRYCODE = 'JPN'
Q5. Query the difference between the maximum and minimum populations in CITY.
SELECT MAX(POPULATION) - MIN(POPULATION) FROM CITY
'EDA Study > SQL' 카테고리의 다른 글
[HackerRank] Basic Aggregation : Top Earners (0) | 2021.02.09 |
---|---|
[HackerRank] Basic Aggregation : The Blunder (0) | 2021.02.09 |
[HackerRank] Basic Aggregation : Revising Aggregations (0) | 2021.02.09 |
[HackerRank] Basic Join : Top Competitors (0) | 2021.02.08 |
[HackerRank] Basic Join : The Report (2) | 2021.02.08 |
[HackerRank] Basic Join : Average Population of Each Continent (0) | 2021.02.08 |