1z0-071 Exam Question 16

Which two statements are true regarding subqueries? (Choose two.)
  • 1z0-071 Exam Question 17

    The PRODUCTS table has the following structure.

    Evaluate the following two SQL statements:
    SQL>SELECT prod_id, NVL2 (prod_expiry_date, prod_expiry_date + 15, ' ') FROM products; SQL>SELECT prod_id, NVL (prod_expiry_date, prod_expiry_date + 15) FROM products; Which statement is true regarding the outcome?
  • 1z0-071 Exam Question 18

    Evaluate the following statement.
    INSERT ALL
    WHEN order_total < 10000 THEN
    INTO small_orders
    WHEN order_total > 10000 AND order_total < 20000 THEN
    INTO medium_orders
    WHEN order_total > 200000 THEN
    INTO large_orders
    SELECT order_id, order_total, customer_id
    FROM orders;
    Which statement is true regarding the evaluation of rows returned by the subquery in the INSERT statement?
  • 1z0-071 Exam Question 19

    Examine the structure of the MEMBERS table:

    Examine the SQL statement:
    SQL > SELECT city, last_name LNAME FROM MEMBERS ORDER BY 1, LNAME DESC; What would be the result execution? (Choose the best answer.)
  • 1z0-071 Exam Question 20

    Examine this description of the PRODUCTS table:

    Rows exist in this table with data in all the columns. You put the PRODUCTS table in read-only mode. Which three commands execute successfully on PRODUCTS?