Solved

Structure of the ORDERS Table

Question 35

Multiple Choice

   Structure of the ORDERS table     Structure of the CUSTOMERS table -Which of the following queries will return the same results as the following SQL statement? SELECT A)  SELECT customer#, lastname, firstname, order# FROM customers NATURAL JOIN orders; B)  SELECT customer#, lastname, firstname, order# FROM customers JOIN orders USING (customer#) ; C)  SELECT c.customer#, lastname, firstname, order# FROM customers c, orders o; D)  both a and b
Structure of the ORDERS table
   Structure of the ORDERS table     Structure of the CUSTOMERS table -Which of the following queries will return the same results as the following SQL statement? SELECT A)  SELECT customer#, lastname, firstname, order# FROM customers NATURAL JOIN orders; B)  SELECT customer#, lastname, firstname, order# FROM customers JOIN orders USING (customer#) ; C)  SELECT c.customer#, lastname, firstname, order# FROM customers c, orders o; D)  both a and b
Structure of the CUSTOMERS table
-Which of the following queries will return the same results as the following SQL statement? SELECT


A) SELECT customer#, lastname, firstname, order#
FROM customers NATURAL JOIN orders;
B) SELECT customer#, lastname, firstname, order#
FROM customers JOIN orders USING (customer#) ;
C) SELECT c.customer#, lastname, firstname, order# FROM customers c, orders o;
D) both a and b

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions