Question 301

View the exhibit and examine the ORDERStable.

The ORDERStable contains data and all orders have been assigned a customer ID. Which statement would add a NOTNULLconstraint to the CUSTOMER_IDcolumn?
  • Question 302

    Which two statements are true regarding non equijoins?
  • Question 303

    Evaluate the following ALTER TABLE statement:
    ALTER TABLE orders
    SET UNUSED (order_date);
    Which statement is true?
  • Question 304

    Examine the data in the EMPLOYEES table:

    Which statement will compute the total annual compensation for each employee?
  • Question 305

    The following are the steps for a correlated subquery, listed in random order:
    1. The WHEREclause of the outer query is evaluated.
    2. The candidate row is fetched from the table specified in the outer query.
    3. This is repeated for the subsequent rows of the table, till all the rows are processed.
    4. Rows are returned by the inner query, after being evaluated with the value from the candidate row in the outer query.
    Which is the correct sequence in which the Oracle server evaluates a correlated subquery?