[SQL] 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 1000 Input FormatThe CITY table is described as follows:

💻 に答える

SELECT COUNT(*)
FROM CITY
WHERE POPULATION > 100000;