Draw three tables that can result by executing each of the following SQL statements. (Put your answer in a document word then upload it).
QUESTION 16
-
Consider the following two tables:
Table1: Products
productID
productName
unitPrice
entryDate
expiryDate
P1
Dell Laptop
350
16-10-2016
30-10-2016
P2
Apple mobile
420
17-02-2018
02-03-2018
P3
Samsung Mobile
330
20-08-2020
30-08-2020
P4
HP Printer
80
21-09-2019
05-10-2019
P5
Canon Printer
150
15-05-2020
20-06-2020
Table2: Orders
orderID
Quantity
Price
productID
1
10
3300
P3
2
5
1800
P1
3
20
1600
P4
4
20
3000
P5
5
9
1100
P7
6
8
2250
P10
Draw three tables that can result by executing each of the following SQL statements. (Put your answer in a document word then upload it).
1. SELECT p. productName, p. unitPrice, p. expiryDate, o. Quantity, o. price
FROM Products AS p
INNER JOIN Orders AS o
ON p. productID = o. productID;
2. SELECT p. productName, p. unitPrice, p. expiryDate, o. Quantity, o. price
FROM Products AS p
LEFT OUTER JOIN Orders AS o
ON p. productID = o. productID;
3. SELECT p. productName, p. unitPrice, p. expiryDate, o. Quantity, o. price
FROM Products AS p
RIGHT OUTER JOIN Orders AS o
ON p. productID = o. productID;
![](/static/compass_v2/shared-icons/check-mark.png)
Step by step
Solved in 3 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)