Solved

Structure of the ORDERS Table

Question 12

Multiple Choice

   Structure of the ORDERS table     Structure of the CUSTOMERS table -Which of the following is a valid SQL statement? A)  SELECT B)  SELECT * FROM customers JOIN orders ON (customer#) ; C)  SELECT c.customer#, order#, orderdate, shipdate FROM customers c, orders c WHERE c.customer# = o.customer#; D)  both b and c
Structure of the ORDERS table
   Structure of the ORDERS table     Structure of the CUSTOMERS table -Which of the following is a valid SQL statement? A)  SELECT B)  SELECT * FROM customers JOIN orders ON (customer#) ; C)  SELECT c.customer#, order#, orderdate, shipdate FROM customers c, orders c WHERE c.customer# = o.customer#; D)  both b and c
Structure of the CUSTOMERS table
-Which of the following is a valid SQL statement?


A) SELECT
B) SELECT * FROM customers JOIN orders ON (customer#) ;
C) SELECT c.customer#, order#, orderdate, shipdate FROM customers c, orders c
WHERE c.customer# = o.customer#;
D) both b and c

Correct Answer:

verifed

Verified

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

Related Questions