View the exhibit and examine the structure in ORDERSand ORDER_ITEMStables.
You need to create a view that displays the ORDER_ID, ORDER_DATE, and the total number of items in each order.
Which CREATEVIEWstatement would create the view successfully?
CREATE OR REPLACE VIEW ord_vu
Examine the description of the CUSTOMERS table:
You need to display last names and credit limits of all customers whose last name starts with A or B in lower or upper case, and whose credit limit is below 1000.
Examine this partial query:
Which two WHERE conditions give the required result?