-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselect-from-nobel.sql
74 lines (61 loc) · 1.22 KB
/
select-from-nobel.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
--1
SELECT yr, subject, winner
FROM nobel
WHERE yr = 1950
--2
SELECT winner
FROM nobel
WHERE yr = 1962
AND subject = 'Literature'
--3
select yr, subject
from nobel
where winner = 'Albert Einstein'
--4
select winner
from nobel
where subject = 'Peace' and yr >= 2000
--5
select yr, subject, winner
from nobel
where subject = 'Literature' and yr >= 1980 and yr <= 1989
--6
SELECT * FROM nobel
WHERE winner IN ('Theodore Roosevelt',
'Woodrow Wilson',
'Jimmy Carter',
'Barack Obama')
--7
select winner
from nobel
where winner like 'John%'
--8
select *
from nobel
where (subject = 'Physics' and yr = 1980) or (subject = 'Chemistry' and yr = 1984)
--9
select *
from nobel
where yr = 1980 and subject not in ('Chemistry', 'Medicine')
--10
select *
from nobel
where (subject = 'Medicine' and yr < 1910) or (subject = 'Literature' and yr >= 2004)
--11
select *
from nobel
where winner = 'PETER GRÜNBERG'
--12
select *
from nobel
where winner = 'EUGENE O''NEILL'
--13
select winner, yr, subject
from nobel
where winner like 'Sir%'
order by yr desc, winner
--14
SELECT winner, subject
FROM nobel
WHERE yr=1984
order by subject in ('Chemistry', 'Physics'), subject, winner;