Question 166

View the Exhibit and examine the structure in the DEPARTMENTS tables. (Choose two.)

Examine this SQL statement:
SELECT department_id "DEPT_ID", department_name, 'b' FROM
departments
WHERE departments_id=90
UNION
SELECT department_id, department_name DEPT_NAME, 'a' FROM
departments
WHERE department_id=10
Which two ORDER BY clauses can be used to sort output?
  • Question 167

    View the Exhibits and examine PRODUCTSand SALES tables.
    Exhibit 1

    Exhibit 2

    You issue the following query to display product name the number of times the product has been sold:

    What happens when the above statement is executed?
  • Question 168

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

    Examine the description of the BOOKS_TRANSACTIONS table:

    Examine this partial SQL statement:
    SELECT * FROM books_transactions
    Which two WHERE conditions give the same result?
  • Question 170

    View the Exhibit and examine the structure of the EMPLOYEES and JOB_HISTORY tables. (Choose all that apply.)

    Examine this query which must select the employee IDs of all the employees who have held the job SA_MAN at any time during their employment.
    SELECT EMPLOYEE_ID
    FROM EMPLOYEES
    WHERE JOB_ID = 'SA_MAN'
    -------------------------------------
    SELECT EMPLOYEE_ID
    FROM JOB_HISTORY
    WHERE JOB_ID = 'SA_MAN';
    Choose two correct SET operators which would cause the query to return the desired result.