-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path50_sub_queries_part_1_scalar_sub_queries.sql
68 lines (51 loc) · 1.62 KB
/
50_sub_queries_part_1_scalar_sub_queries.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
-- 1) Scalar subqueries
--return a single value or exactly one row and exactly one column
--using comparison operators
-- 2) Multirow subqueries
--One column with multiple rows
--IN or NOT IN
--ALL or ANY
--Multiple columns with multiple rows
--creating a derived table in from clause
-- 3) Correlated subqueries
--inner query relies on information obtained from the outer query
--EXISTS or NOT EXISTS
-- 4) Sub Query in the SELECT clause
-- 5) Sub Query in JOIN
-- 1) Scalar subqueries
--return a single value or exactly one row and exactly one column
--using comparison operators
-- Question ?
--Find the list employee who receive
--salary greater than the average company salary ?
--salary less than the average company salary ?
select * from emp_salary
--salary greater than the average company
select * from emp_salary
where Salary > (select avg(Salary) from emp_salary)
--select avg(Salary) from emp_salary
--salary less than the average company salary ?
select * from emp_salary
where Salary < (select avg(Salary) from emp_salary)
-- 2) Sub Query in SELECT clause
-- Question ?
--Find the difference between the salary of each employee and the average salary?
--without using any join clause
select * from emp_salary
select Name
,Salary
--,(SELECT avg(Salary) from emp_salary) as avg_salary
,Salary-(SELECT avg(Salary) from emp_salary) as diff
from emp_salary
select *
,Salary-avg_salary as diff
from
(select Name
,Salary
from emp_salary
)a
cross join
(
select avg(salary) as avg_salary
from emp_salary
)b