SUM and COUNT QUIZ
1. Select the statement that shows the sum of population of all countries in 'Europe'
2. Select the statement that shows the number of countries with population smaller than 150000
3. Select the full set of SQL aggregate functions
4. Select the result that would be obtained from the following code:SELECT region, SUM(area) FROM bbc WHERE SUM(area) > 15000000 GROUP BY region
5. Select the statement that shows the average population of 'Poland', 'Germany' and 'Denmark'
6. Select the statement that shows the medium population density of each region
7. Select the statement that shows the name and population density of the country with the largest population
8. Pick the result that would be obtained from the following code: SELECT region, SUM(area) FROM bbc GROUP BY region HAVING SUM(area)<= 20000000