Select Quiz

world table

Link

World Table:

namecontinentareapopulationgdp

Afghanistan

Asia

652230

25500100

20343000000

Albania

Europe

28748

2831741

12960000000

Algeria

Africa

2381741

37100000

188681000000

Andorra

Europe

468

78115

3712000000

Angola

Africa

1246700

20609294

100990000000

...

...

...

...

...

1. Select the code which produces this table

namepopulation

Bahrain

1234571

Swaziland

1220000

Timor-Leste

1066409

SELECT name, population
  FROM world
 WHERE population BETWEEN 1000000 AND 1250000
  1. Pick the result you would obtain from this code:

SELECT name, population
  FROM world
 WHERE name LIKE "Al%"
Albania3200000

Algeria

32900000

  1. Select the code which shows the countries that end in A or L

SELECT name FROM world
 WHERE name LIKE '%a' OR name LIKE '%l'
  1. Pick the result from the query

    SELECT name,length(name)
      FROM world
     WHERE length(name)=5 and region='Europe'
namelength(name)

Italy

5

Malta

5

Spain

5

  1. Here are the first few rows of the world table:

nameregionareapopulationgdp

Afghanistan

South Asia

652225

26000000

Albania

Europe

28728

3200000

6656000000

Algeria

Middle East

2400000

32900000

75012000000

Andorra

Europe

468

64000

...

Pick the result you would obtain from this code:

SELECT name, area*2 FROM world WHERE population = 64000

Andorra

936

  1. Select the code that would show the countries with an area larger than 50000 and a population smaller than 10000000

SELECT name, area, population
  FROM world
 WHERE area > 50000 AND population < 10000000
  1. Select the code that shows the population density of China, Australia, Nigeria and France

SELECT name, population/area
  FROM world
 WHERE name IN ('China', 'Nigeria', 'France', 'Australia')

Last updated