1z0-071 Exam Question 86

Which two statements are true about INTERVAL data types?
  • 1z0-071 Exam Question 87

    Evaluate the following two queries:
    SQL> SELECT cust_last_name, cust_city
    FROM customers
    WHERE cust_credit_limit IN (1000, 2000, 3000);
    SQL> SELECT cust_last_name, cust_city
    FROM customers
    WHERE cust_credit_limit = 1000 or cust_credit_limit = 2000 or
    cust_credit_limit = 3000
    Which statement is true regarding the above two queries?
  • 1z0-071 Exam Question 88

    Examine this SQL statement:

    Which two are true? (Choose two.)
  • 1z0-071 Exam Question 89

    View the exhibit and examine the structure in ORDERS and ORDER_ITEMS tables.

    You need to create a view that displays the ORDER_ID, ORDER_DATE, and the total number of items in each order.
    Which CREATE VIEW statement would create the views successfully?
  • 1z0-071 Exam Question 90

    Which two statements are true about the results of using the INTERSECToperator in compound queries?
    (Choose two.)