SESSION NAME: SQL Functions - 2.

QUESTION NAME: SUM of CITY Table.


TABLE DESCRIPTION:
Write a query to add the population filed from city table.

Note: Use SUM method

CODE:
select SUM(population) from city;