Question 101

Examine the command:

What does ON DELETE CASCADE imply?
  • Question 102

    Which two statements are true regarding constraints? (Choose two.)
  • Question 103

    Examine the commands used to create DEPARTMENT_DETAILSand COURSE_DETAILS tables:

    You want to generate a list of all department IDs along with any course IDs that may have been assigned to them.
    Which SQL statement must you use?
  • Question 104

    View the Exhibit and examine the structure of the CUSTOMERStable.

    Using the CUSTOMERStable, you must generate a report that displays a credit limit increase of 15% for all customers.
    Customers with no credit limit should have "Not Available" displayed.
    Which SQL statement would produce the required result?
    SELECT NVL(TO_CHAR(cust_credit_limit*.15),'Not Available') "NEW CREDIT"
  • Question 105

    You execute the SQL statement:

    What is the outcome?