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
Note: Use SUM method
CODE:
select SUM(population) from city;
SESSION NAME: SQL Functions - 2.
QUESTION NAME: SUM of CITY Table.
0 Comments