Question: 7 . Given the following query: SELECT zip, order# FROM customers NATURAL JOIN orders; Which of the following queries is equivalent? a . SELECT zip,
Given the following query:
SELECT zip, order#
FROM customers NATURAL JOIN orders;
Which of the following queries is equivalent?
a SELECT zip, order#
FROM customers JOIN orders
WHERE customers.customer# orders.customer#; b SELECT zip, order#
FROM customers, orders
WHERE customers.customer# orders.customer#;
c SELECT zip, order#
FROM customers, orders
WHERE customers.customer# orders.customer# ;
d none of the above
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
