-
Notifications
You must be signed in to change notification settings - Fork 105
/
0_solution.sql
31 lines (21 loc) · 884 Bytes
/
0_solution.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--1. Show the population of Germany
SELECT population FROM world
WHERE name = 'Germany';
--2. Show the name and per capita gdp: gdp/population for each country where the area is over 5,000,000 km2
SELECT name, gdp/population FROM world
WHERE area > 5000000;
--3. Show the name and continent where the area is less than 2000 and the gdp is more than 5000000000
SELECT name , continent
FROM world
WHERE area < 2000
AND gdp > 5000000000;
--4. Show the name and the population for 'Denmark', 'Finland', 'Norway', 'Sweden'
SELECT name, population FROM world
WHERE name IN ('Finland', 'Norway',
'Denmark', 'Sweden');
--5. Show each country that begins with G
SELECT name FROM world
WHERE name LIKE 'G%';
--6. Show the area in 1000 square km. Show area/1000 instead of area
SELECT name, area/1000 FROM world
WHERE area BETWEEN 200000 AND 250000;