1.Total world population

SELECT SUM(population)FROM world
2.List of continents

select distinct continentfrom world
3.GDP of Africa

select sum(gdp)from worldwhere continent = 'Africa'
4.Count the big countries

select count(name)from worldwhere area >= 1000000
5.Baltic states population

select sum(population)from worldwhere name in ('Estonia','Latvia','Lithuania')
6.Using GROUP BY and HAVING

select continent,count(name)from worldgroup by continent
7.Counting big countries in each continent

select continent,count(name)from worldwhere population >= 10000000group by continent
8.Counting big continents

select continentfrom worldgroup by continenthaving sum(population) >= 100000000