Solved

Contents of the ORDERS Table

Question 42

Multiple Choice

Contents of the ORDERS table
Contents of the ORDERS table    -Which of the following queries will display all orders placed in the month of March?​ A)  ​SELECT * FROM orders WHERE orderdate LIKE '%Mar%'; B)  ​SELECT * FROM orders WHERE orderdate LIKE '_Mar_'; C)  ​SELECT * FROM orders WHERE orderdate LIKE  %Mar% ; D)  ​none of the above
-Which of the following queries will display all orders placed in the month of March?​


A) ​SELECT * FROM orders WHERE orderdate LIKE '%Mar%';
B) ​SELECT * FROM orders WHERE orderdate LIKE '_Mar_';
C) ​SELECT * FROM orders WHERE orderdate LIKE "%Mar%";
D) ​none of the above

Correct Answer:

verifed

Verified

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

Related Questions