1z0-071 Exam Question 56

View the Exhibit and examine the structure of the SALESand PRODUCTStables. (Choose two.)

In the SALEStable, PROD_ID is the foreign key referencing PROD_ID in the PRODUCTS table. You must list each product ID and the number of times it has been sold.
Examine this query which is missing a JOINoperator:

Which two JOINoperations can be used to obtain the required output? (Choose two.)
  • 1z0-071 Exam Question 57

    View the Exhibit and examine the structure of the ORDERS table. The ORDER_ID column
    is the
    PRIMARY KEY in the ORDERS table.
    Evaluate the following CREATE TABLE command:
    CREATE TABLE new_orders(ord_id, ord_date DEFAULT SYSDATE, cus_id)
    AS
    SELECT order_id.order_date,customer_id
    FROM orders;
    Which statement is true regarding the above command?
  • 1z0-071 Exam Question 58

    You create a table named 123.
    Which statement runs successfully?
  • 1z0-071 Exam Question 59

    Which two statements are true about date/time functions in a session where NLS_DATE_PORMAT is set to DD-MON-YYYY SH24:MI:SS
  • 1z0-071 Exam Question 60

    Examine the structure of the EMPLOYEES table:

    There is a parent/child relationship between EMPLOYEE_ID and MANAGER_ID.
    You want to display the name, joining date, and manager for all employees. Newly hired employees are yet to be assigned a department or a manager. For them, 'No Manager' should be displayed in the MANAGER column.
    Which SQL query gets the required output?