Revising Aggregations - The Count Function

Sort by

recency

|

474 Discussions

|

  • + 0 comments
    SELECT COUNT(name)
    FROM city
    WHERE population > 100000;
    
  • + 0 comments

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

  • + 0 comments

    ngoccth_SQL SERVER: SELECT COUNT (name) FROM City WHERE Population > 100000

  • + 0 comments

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

  • + 0 comments

    select COUNT(population) from city where population > 100000;