-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsqlquery11.sql
58 lines (52 loc) · 2.21 KB
/
sqlquery11.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
Problem Statement:
Write a SQL query to find those buyers whose budget is less than 3000 (or even NULL). Display the Buyer name, city, budget and Seller's name & city. The result should be in ascending order of buyers ID.
Information about the table:
Table Buyer:
+------+----------+------------+--------+------+
| bid | bname | bcity | budget | sid |
+------+----------+------------+--------+------+
| 1 | rahul | jammu | 1000 | 11 |
| 2 | roshni | chandigarh | 2000 | 12 |
| 3 | ankush | delhi | 3000 | 13 |
| 4 | himanshu | jaipur | 1000 | 14 |
| 5 | manya | lucknow | 2000 | 11 |
| 6 | anjali | dehradun | NULL | 15 |
+------+----------+------------+--------+------+
Table Seller:
+------+--------+---------+--------+
| sid | sname | scity | profit |
+------+--------+---------+--------+
| 11 | aditi | delhi | 200 |
| 12 | anchit | mumbai | 300 |
| 13 | rohit | chennai | 100 |
| 14 | virat | kolkata | 400 |
| 15 | taimur | indore | 200 |
+------+--------+---------+--------+
Table Product:
+------+--------+------------+------+------+
| pid | amount | pdate | bid | sid |
+------+--------+------------+------+------+
| 21 | 500 | 2022-01-11 | 1 | 11 |
| 22 | 300 | 2022-02-12 | 2 | 12 |
| 23 | 1000 | 2022-02-17 | 3 | 13 |
| 24 | 600 | 2022-03-14 | 4 | 14 |
| 25 | 700 | 2022-06-16 | 5 | 11 |
| 26 | 800 | 2022-08-18 | 6 | 15 |
| 27 | 500 | 2022-11-26 | 2 | 12 |
+------+--------+------------+------+------+
Note: Write keywords of syntax in uppercase alphabets.
Solution:
SELECT b.bname, b.bcity, b.budget, s.sname, s.scity FROM Seller s
LEFT JOIN Buyer b
ON b.sid= s.sid
WHERE b.budget < 3000
ORDER BY b.bid;
Output:
+----------+------------+--------+--------+---------+
| bname | bcity | budget | sname | scity |
+----------+------------+--------+--------+---------+
| rahul | jammu | 1000 | aditi | delhi |
| roshni | chandigarh | 2000 | anchit | mumbai |
| himanshu | jaipur | 1000 | virat | kolkata |
| manya | lucknow | 2000 | aditi | delhi |
+----------+------------+--------+--------+---------+