1z0-071 Exam Question 286

Examine the description of the EMPLOYERS table:

Examine these requirements:
Disable the manager ID and salary of the lowest paid employees for that manager.
Exclude anyone whose manager is not known.
Exclude any managers where the minimum salary is 6000 or less.
Sort the output by minimum salary with the highest salary shown first.
Which statement will do this?
  • 1z0-071 Exam Question 287

    View the exhibit and examine the structure of the SALES, CUSTOMERS, PRODUCTSand TIMEStables.

    The PROD_IDcolumn is the foreign key in the SALEStable referencing the PRODUCTStable.
    The CUST_IDand TIME_IDcolumns are also foreign keys in the SALEStable referencing the CUSTOMERS and TIMEStables, respectively.
    Examine this command:
    CREATE TABLE new_sales (prod_id, cust_id, order_date DEFAULT SYSDATE)
    AS
    SELECT prod_id, cust_id, time_id
    FROM sales;
    Which statement is true?
  • 1z0-071 Exam Question 288

    You want to display the date for the first Monday of the next month and issue the following command:

    What is the outcome?
  • 1z0-071 Exam Question 289

    Examine the structure of the BOOKS_TRANSACTIONStable:

    You want to display the member IDs, due date, and late fee as $2 for all transactions.
    Which SQL statement must you execute?
    SELECT member_id AS MEMBER_ID, due_date AS DUE_DATE, $2 AS LATE_FEE FROM
  • 1z0-071 Exam Question 290

    Examine the description of the SALES1 table:

    SALES2 is a table with the same description as SALES1.
    Some sales data is duplicated in both tables.
    You want to display the rows from the SALES1 table which are not present in the SALES2 table.
    Which set operator generates the required output?