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;

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

  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

 

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Normalization
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education