-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathselect_within_select.sql
226 lines (99 loc) · 4.29 KB
/
select_within_select.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
SELECT within SELECT Tutorial
This tutorial looks at how we can use SELECT statements within SELECT statements to perform more complex queries.
name continent area population gdp
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
...
Using nested SELECT
Summary
Contents [hide]
1 Exercises
2 Bigger than Russia
3 Richer than UK
4 Neighbours of Argentina and Australia
5 Between Canada and Poland
6 Percentages of Germany
7 Bigger than every country in Europe
8 Largest in each continent
9 First country of each continent (alphabetically)
10 Difficult Questions That Utilize Techniques Not Covered In Prior Sections
Bigger than Russia
1.
List each country name where the population is larger than that of 'Russia'.
world(name, continent, area, population, gdp)
SELECT name FROM world
WHERE population >
(SELECT population FROM world
WHERE name='Russia')
Richer than UK
2.
Show the countries in Europe with a per capita GDP greater than 'United Kingdom'.
Per Capita GDP
The per capita GDP is the gdp/population
select name from world
where continent='Europe' and (gdp/population) >
(select gdp/population from world
where name='United Kingdom'
)
Neighbours of Argentina and Australia
3.
List the name and continent of countries in the continents containing either Argentina or Australia. Order by name of the country.
select name,continent from world
where continent in (select continent from world where
name='Argentina'
or name='Australia')
order by name
Between Canada and Poland
4.
Which country has a population that is more than Canada but less than Poland? Show the name and the population.
select name,population from world
where population between (select population+1 from world
where name='Canada') and
(select population-1 from world
where name='Poland')
Percentages of Germany
5.
Germany (population 80 million) has the largest population of the countries in Europe. Austria (population 8.5 million) has 11% of the population of Germany.
Show the name and the population of each country in Europe. Show the population as a percentage of the population of Germany.
Decimal places
You can use the function ROUND to remove the decimal places.
Percent symbol %
You can use the function CONCAT to add the percentage symbol.
select name,CONCAT(ROUND(population*100/(select population
from world where name='Germany'),0),'%')
from world where continent='Europe'
Bigger than every country in Europe
6.
Which countries have a GDP greater than every country in Europe? [Give the name only.] (Some countries may have NULL gdp values)
select name from world where gdp > (select max(gdp)
from world where continent='Europe')
Largest in each continent
7.
Find the largest country (by area) in each continent, show the continent, the name and the area:
SELECT continent,name, area FROM world x
WHERE area >= ALL (select area from world b where
b.continent = x.continent and area>0 )
First country of each continent (alphabetically)
8.
List each continent and the name of the country that comes first alphabetically.
SELECT continent, name FROM world x
where name <= ALL
(SELECT name FROM world y
where y.continent=x.continent);
Difficult Questions That Utilize Techniques Not Covered In Prior Sections
9.
Find the continents where all countries have a population <= 25000000. Then find the names of the countries associated with these continents. Show name, continent and population.
SELECT name, continent, population FROM world x
WHERE 25000000 >= ALL
(SELECT population FROM world y
WHERE y.continent=x.continent);
10.
Some countries have populations more than three times that of any of their neighbours (in the same continent). Give the countries and continents.
select name, continent from world x
where population > ALL
(SELECT 3*population from world y
where y.continent=x.continent and
x.name <> y.name);