MoL Chapter 2
From SQLZoo
schema:manning;
From chapter 2
1.
Show all the data in the table world
SELECT * FROM world
result
2.
Show the continent and name
SELECT continent, name FROM world
result
3.
Show the details of France
SELECT name, population, capital, continent
FROM world
WHERE name='France'
result
4.
Show the Countries of North America
SELECT name, continent
FROM world
WHERE continent='North America'
result
5.
Which country has an area of 103000?
SELECT name, continent
FROM world
WHERE area=103000
result
Try It Now
6.
What country has Beijing as the capital?
SELECT name
FROM world
WHERE capital='Beijing'
result
7.
What is the capital of United Kingdom
SELECT capital
FROM world
WHERE name='United Kingdom'
result
8.
What countries take the name of their capital city?
SELECT name, capital
FROM world
WHERE name=capital
result
9.
Show the countries with more than 200 million
SELECT name, population
FROM world
WHERE population>200000000
result
10.
Show the countries after Y in the alphabet
SELECT name, continent
FROM world
WHERE name>'Y'
result