1z1-071 Exam Question 21

Which two statements are true about date/time functions in a session where NLS_DATE_FORMAT is set to DD-MON-YYYY HH24:MI:SS?
  • 1z1-071 Exam Question 22

    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.)
  • 1z1-071 Exam Question 23

    Which two statements are true regarding constraints?
  • 1z1-071 Exam Question 24

    Examine the structure of the EMPLOYEES table. (Choose the best answer.)

    You must display the details of employees who have manager with MANAGER_ID 100, who were hired in the past 6 months and who have salaries greater than 10000.
  • 1z1-071 Exam Question 25

    View the Exhibit and examine the structure of the ORDER_ITEMS table.

    Examine the following SQL statement:
    SELECT order_id, product_id, unit_price
    FROM order_items
    WHERE unit_price
    (SELECT MAX(unit_price)
    FROM order_items
    GROUP BY order_id);
    You want to display the PRODUCT_ID of the product that has the highest
    UNIT_PRICE per ORDER_ID. What correction should be made in the above SQL statement to achieve this?