HackerRank-Aggregation-Revising Aggregations - The Count Function
Revising Aggregations - The Count Function
Query a count of the number of cities in CITY having a Population larger than 100,000.
Input Format The CITY table is described as follows:
My solution
SELECT COUNT(NAME)
FROM CITY
WHERE population > 100000;
Comments