Question 296

Which two statements are true regarding constraints? (Choose two.)
  • Question 297

    View the exhibit and examine the structure of the EMPLOYEEStable.

    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_NAMEof the managers and the second column would have LAST_NAMEof the employees.
    Which SQL statement would you execute?
    SELECT m.last_name "Manager", e.last_name "Employee"
  • Question 298

    View the Exhibit and examine the structure of the CUSTOMERS and CUST_HISTORY tables.

    The CUSTOMERS table contains the current location of all currently active customers.
    The CUST_HISTORY table stores historical details relating to any changes in the location of all current as well as previous customers who are no longer active with the company.
    You need to find those customers who have never changed their address.
    Which SET operator would you use to get the required output?