Question 81

View the exhibit and examine the structure of the PROMOTIONStable.

You have to generate a report that displays the promo name and start date for all promos that started after the last promo in the 'INTERNET' category.
Which query would give you the required output?
SELECT promo_name, promo_begin_date FROM promotions
  • Question 82

    Examine this query:
    SELECT TRUNC(ROUND(156.00, -2), -1) FROM DUAL;
    What is the result?
  • Question 83

    Which three are true about multitable INSERTstatements? (Choose three.)
  • Question 84

    Examine the structure proposed for the TRANSACTIONS table:

    Which two statements are true regarding the storage of data in the above table structure? (Choose two.)
  • Question 85

    View the exhibit and examine the ORDERS table.

    The ORDERS table contains data and all orders have been assigned a customer ID. Which statement would add a NOT NULL constraint to the CUSTOMER_ID column?