-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7_subquery_usages.sql
218 lines (181 loc) · 4.45 KB
/
7_subquery_usages.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
--https://www.scaler.com/topics/sql/how-index-works-in-sql/
--ISNULL
--IFNULL
--nullif
--is null
--is not null
--sub query usage
select Name--*
from non_equi_join_test
where S_NO = (
select max(S_NO)
from non_equi_join_test
)
--subquery along with from
select *
from (select
*
from
non_equi_join_test
)a
--group by with subquery
select *
from (select
Name,SUM(S_NO) as sum_s_no
from
non_equi_join_test
group by Name
)a
--order by is not generally used with sub query
--but along with top/limit order by used in subquery
--below query if remove 'top 1', query will give error
select *
from (select top 1
Name,SUM(S_NO) as sum_s_no
from
non_equi_join_test
group by Name
order by sum_s_no
)a
----BETWEEN operator cannot be used with a subquery.
----However, the BETWEEN operator can be used within the subquery
select * from
(select * from non_equi_join_test
where S_NO between 10 and 30) a
select * from
(select * from non_equi_join_test
) a
where S_NO between 10 and 30
----subquery returning multiple rows
----using numerous operator IN
select * from product
where Price IN (
select S_NO
from non_equi_join_test
)
---using subquery with INSERT
---INSERT
--creating a test product table
CREATE TABLE test_product(
ProductID INTEGER NOT NULL,
ProductName varchar(100),
SupplierID INTEGER,
CategoryID INTEGER,
Unit varchar(100),
Price float
)
--select * from test_product
select * from product
--now from product table inserting the data into test_product table
INSERT INTO test_product
select * from product
where SupplierID in (
select SupplierID
from product
where SupplierID%2 = 0
)
--using the above insert query added only even supplier ID to test_product table
select * from test_product
--using subquery with update statement
--UPDATE
--modify existing record within the table, moslty used with SET and WHERE clause
--select * from non_equi_join_test
/*
UPDATE non_equi_join_test
SET S_NO = S_NO / 2
*/
UPDATE non_equi_join_test
SET S_NO = S_NO/2
where S_NO IN (
select S_NO
from non_equi_join_test
where S_NO%20 != 0
)
select * from non_equi_join_test
---DELETE and subquery
--deleted the Name which does not start with 'a'
DELETE FROM non_equi_join_test
WHERE S_NO IN (
select S_NO
from non_equi_join_test
where Name not like 'a%'
)
select * from non_equi_join_test
select top 10 * from employee
----subquery with EXISTS and NOT EXISTS
select top 10 * from product
select top 10 * from supplier
select null
select ' '
---this wont give any result because subquery does not return any row, hence exists return FALSE
select * from product
where EXISTS (
select top 0 * from supplier
)
---gives result because subquery return rows, hence subquery with exist return TRUE
select * from product
where EXISTS (
select top 1 * from supplier
)
--CORRELATED SUBQUERY using EXISTS
--select TOP 10 * from product
--select top 10 * from supplier
select * from supplier
where exists (
select *
from product
where supplier.SupplierID = product.SupplierID
and product.Price > 90
)
--SUBQUERY WITH HAVING
--select sum(Price)/20 from product
--where SupplierID = 1
select SupplierID,count(*) AS row_count--,avg(Price) as avg_price
from product
group by SupplierID
having AVG(Price) >= (
select sum(Price)/50
from product
)
some
all
any
---TYPES OF SUBQUERIES
--single row sub query
--multiple row sub query
--multiple column sub query
--correlated sub query
--nested sub query
---SINGLE ROW SUB QUERY
--select * from product
--select * from supplier
--using sub query in SELECT statement
select SupplierName
,City
,(select avg(Price) from product) as avg_price
from supplier
--Multiple Column sub queries
select * from physician_speciality
select * from patient_treatment
select *
from patient_treatment
where (physician_id,event_name) in (
select
physician_id
,speciality
from physician_speciality
where physician_id in (1000,2000,3000)
)
----nested subquery within the SELECT statement
select SupplierName
,City
,(
select
round(avg_price,2)
from
(select
avg(Price) as avg_price
from product
)a
) as avg_price_1
from supplier