Revising Aggregations - The Sum Function

Sort by

recency

|

441 Discussions

|

  • + 0 comments
    select sum(population)
    from city
    where district = 'California';
    
  • + 0 comments
    SELECT SUM(population)
    FROM city
    WHERE district = 'California';
    
  • + 0 comments

    ngoccth_SERVER: SELECT SUM (population) FROM City WHERE District = 'California'

  • + 0 comments

    select sum(population) from city where district='California';

  • + 0 comments

    select sum(population) from city where District = 'California';