1z0-071 Exam Question 186

Examine the structure of the MEMBERS table.
NameNull?Type
------------------------------------------------------------
MEMBER_IDNOT NULLVARCHAR2 (6)
FIRST_NAMEVARCHAR2 (50)
LAST_NAMENOT NULLVARCHAR2 (50)
ADDRESSVARCHAR2 (50)
CITYVARCHAR2 (25)
STATENOT NULL VARCHAR2 (3)
Which query can be used to display the last names and city names only for members from the states MO and MI?
  • 1z0-071 Exam Question 187

    A session's NLS_DATE_FORMAT is set to DD Mon YYYY.
    Which two queries return the value 1 Jan 2019?
    SELECT TO_DATE('2019-01-01') FROM DUAL;
  • 1z0-071 Exam Question 188

    These are the steps for a correlated subquery, listed in random order:
    1. The WHEREclause of the outer query is evaluated.
    2. A candidate row is fetched from the table specified in the outer query.
    3. This is repeated for the subsequent rows of the table, until 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?