Question 176

View the Exhibit and examine the structure of the EMPLOYEES table.
You want to display all employees and their managers having 100 as the MANAGER_ID. You want the output in two columns: the first column would have the LAST_NAME of the managers and the second column would have LAST_NAME of the employees.
Which SQL statement would you execute?
  • Question 177

    Examine the command:
    SQL> ALTER TABLE books_transactions
    ADD CONSTRAINT fk_book_id FOREIGN KEY (book_id)
    REFERENCES books (book_id) ON DELETE CASCADE;
    What does ON DELETE CASCADE imply?
  • Question 178

    Which three statements are true regarding group functions? (Choose three.)
  • Question 179

    Which two statements are true regarding working with dates? (Choose two.)
  • Question 180

    View the Exhibit and examine PRODUCTSand ORDER_ITEMStables.

    You executed the following query to display PRODUCT_NAMEand the number of times the product has been ordered:
    SELECT p.product_name, i.item_cnt
    FROM (SELECT product_id, COUNT (*) item_cnt
    FROM order_items
    GROUP BY product_id) i RIGHT OUTER JOIN products p
    ON i.product_id = p.product_id;
    What would happen when the above statement is executed?