SELECT quiz
1. Select the code which shows the countries with a population between 100000000 and 200000000
2. Pick the result you would obtain from this code: SELECT name, population FROM bbc WHERE name LIKE "Al%"
3. Select the code which shows the countries that end in A or L
4. Pick the code which shows the total population of Scandinavia (Denmark, Finland, Sweden and Norway)
5. Pick the result you would obtain from this code: SELECT name, area * 2 FROM bbc WHERE population = 64000
6. Select the code that would show the countries with an area larger than 50000 and a population smaller than 10000000
7. Select the code that shows the population density of China, Australia, Nigeria and France
8. Pick the result that would be obtained from this code: SELECT CONCAT(name,region), population FROM bbc WHERE region IN ('Africa','Middle East') AND name LIKE 'A%'