Question 136

Examine this SQL statement:

Which two are true?
  • Question 137

    Examine these SQL statements which execute successfully:

    Which two statements are true after execution? (Choose two.)
  • Question 138

    View the Exhibit and examine the description of the ORDERS table. (Choose two.) Which two WHERE clause conditions demonstrate the correct usage of conversion functions?
  • Question 139

    Examine the description of the PROMTIONS table:

    You want to display the unique promotion costs in each promotion category.
    Which two queries can be used?
  • Question 140

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

    Evaluate the following SQL statement:
    SELECT first_name, employee_id, NEXT_DAY(ADD_MONTHS(hire_date, 6), 1) "Review" FROM employees;
    The query was written to retrieve the FIRST_NAME, EMPLOYEE_ID, and review date for employees. The review date is the firsts Monday after the completion of six months of the hiring. The NLS_TERRITORY parameter is set to AMERICA in the session.
    Which statement is true regarding this query?