Question 96

Which three statements are true? (Choose three.)
  • Question 97

    View the Exhibit and examine the structure of the PRODUCT_INFORMATION table.

    You want to see the product names and the date of expiration of warranty for all the products, if the product is purchased today. The products that have no warranty should be displayed at the top and the products with maximum warranty period should be displayed at the bottom.
    Which SQL statement would you execute to fulfill this requirement?
  • Question 98

    View the Exhibit and examine the description for the SALES and CHANNELS tables.

    You issued this SQL statement:

    Which statement is true regarding the result? (Choose the best answer.)
  • Question 99

    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 AND order_total < 20000 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?
  • Question 100

    Evaluate the following SQL commands:

    The command to create a table fails. Identify the reason for the SQL statement failure.