Question 131

View the exhibit and examine the structure of ORDERS and CUSTOMERS tables.

Which INSERT statement should be used to add a row into the ORDERS table for the customer whose CUST_LAST_NAME is Roberts and CREDIT_LIMIT is 600? Assume there exists only one row with CUST_LAST_NAME as Roberts and CREDIT_LIMIT as 600.
  • Question 132

    Examine the structure of the MEMBERS table: (Choose the best answer.)

    Examine the SQL statement:
    SQL > SELECT city, last_name LNAME FROM MEMBERS ORDER BY 1, LNAME DESC; What would be the result execution?
  • Question 133

    Evaluate the following statement.

    Which statement is true regarding the evaluation of rows returned by the subquery in the INSERT statement?
  • Question 134

    Examine the commands used to create DEPARTMENT_DETAILS and
    COURSE_DETAILS tables:
    You want to generate a list of all department IDs that do not exist in the COURSE_DETAILS table.
    You execute the SQL statement:
    What is the outcome?
  • Question 135

    View the Exhibit and examine the description of the ORDERS table.

    Which two WHERE clause conditions demonstrate the correct usage of conversion functions? (Choose two.)