SELECT name,gdp/population FROM world
WHERE population>200000000
SELECT name,population/1000000FROM world
WHERE continent='South America'
SELECT name,population FROM world
WHERE name in('France','Germany','Italy')
SELECT name FROM world
WHERE name like'%United%'
SELECT name,population,area FROM world
WHERE area>3000000or population>250000000
SELECT name,population,area FROM world
WHERE area>3000000xor population>250000000
SELECT
name,round(population/1000000,2),round(gdp/1000000000,2)FROM world
WHERE continent='South America'
SELECT
name,round(gdp/population,-3)FROM world
where gdp>1000000000000
SELECT name,CASEWHEN continent='Oceania'THEN'Australasia'ELSE continent ENDFROM world
WHERE name LIKE'N%'
select name,casewhen continent in('Europe','Asia')then'Eurasia'when continent in('North America','South America','Caribbean')then'America'else continent endfrom world
where name like'A%'or name like'B%'
select name,contient,casewhen continent='Oceania'then'Australasia'when continent in('Eurasia','Turkey')then' Europe/Asia'when continent='Caribbean'and name beginlike'B%'then'North America'when continent='Caribbean'and name beginnotlike'B%'then'South America'else continent endfrom world
orderby name