-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02_03.sql
123 lines (98 loc) · 2.72 KB
/
02_03.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
-- Base query
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
-- find the rows where the service name is 'Catering - Lunch'
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
where srvc_name = 'Catering - Lunch'
-- find the rows where the service name is not 'Catering - Lunch'
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
where srvc_name != 'Catering - Lunch'
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
where srvc_name <> 'Catering - Lunch'
-- find the rows where the service name is 'Gift Basket Delivery - Small', 'Gift Basket Delivery - Medium', or 'Gift Basket Delivery - Large'
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
where srvc_name IN ('Gift Basket Delivery - Small', 'Gift Basket Delivery - Medium', 'Gift Basket Delivery - Large')
-- find the rows where the service name is not 'Gift Basket Delivery - Small', 'Gift Basket Delivery - Medium', or 'Gift Basket Delivery - Large'
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
where srvc_name NOT IN ( --filtering condition
'Gift Basket Delivery - Small',
'Gift Basket Delivery - Medium',
'Gift Basket Delivery - Large')
-- find the rows where the service name starts with 'Gift Basket Delivery'
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
where srvc_name LIkE 'Gift Basket Delivery%'
-- find the rows where the service name contains 'Party'
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
where srvc_name LIkE '%Party%'
-- find the rows where the service name does not start with 'Gift Basket Delivery'
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
where srvc_name NOT LIkE 'Gift Basket Delivery%'
-- find the rows where the price per person is between $75 and $125
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
where per_person_price between 75 and 125
-- find the rows where the price per person is less than $75
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
where per_person_price < 75
-- find the rows where the price per person is $125 or more
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
where per_person_price >= 125
-- when are NULL values returned?
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
where min_participants IS NULL
select
srvc_name,
min_participants,
per_person_price
from dbo.additional_service
where min_participants IS NOT NULL