SQLQueries/NumberOfCities.sql
2024-10-15 10:33:17 -04:00

4 lines
56 B
SQL

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