1z0-071 Exam Question 161

View the exhibit and examine the descriptions of the DEPT and LOCATIONS tables.

You want to update the CITY column of the DEPT table for all the rows with the corresponding value in the CITY column of the LOCATIONS table for each department.
Which SQL statement would you execute to accomplish the task?
  • 1z0-071 Exam Question 162

    Examine the structure of the MEMBERS table:

    Examine the SQL statement:
    SQL > SELECT city, last_name LNAME FROM MEMBERS ORDER BY 1, LNAME DESC; What would be the result execution? (Choose the best answer.)
  • 1z0-071 Exam Question 163

    Examine the description of the EMPLOYEES table:

    Which query requires explicit data type conversion?
  • 1z0-071 Exam Question 164

    Which three are true about the MERGEstatement?
  • 1z0-071 Exam Question 165

    View the exhibit and examine the data in ORDERS_MASTER and MONTHLY_ORDERS tables.

    Evaluate the following MERGE statement:
    MERGE_INTO orders_master o
    USING monthly_orders m
    ON (o.order_id = m.order_id)
    WHEN MATCHED THEN
    UPDATE SET o.order_total = m.order_total
    DELETE WHERE (m.order_total IS NULL)
    WHEN NOT MATCHED THEN
    INSERT VALUES (m.order_id, m.order_total);
    What would be the outcome of the above statement?