We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Revising Aggregations - The Count Function
Revising Aggregations - The Count Function
Sort by
recency
|
507 Discussions
|
Please Login in order to post a comment
SELECT count(*) FROM city WHERE population > 100000 ;
SELECT COUNT(*) FROM CITY WHERE population >100000;
SELECT COUNT(*) FROM CITY WHERE Population > 100000;
select count(COUNTRYCODE) from CITY where POPULATION > 100000;
SELECT COUNT(*)
FROM CITY
WHERE POPULATION > 100000;