Question 201

Which statement is true regarding external tables?
  • Question 202

    Examine the description of the PRODUCT_INFORMATION table:

    Which query retrieves the number of products with a null list price?
  • Question 203

    You need to calculate the number of days from 1st January 2019 until today. Dates are stored in the default format of DD-MON-RR. Which two queries give the required output?
  • Question 204

    View the Exhibit and examine the structure in the EMPLOYEES tables.
    Evaluate the following SQL statement:
    SELECT employee_id, department_id
    FROM employees
    WHERE department_id= 50 ORDER BY department_id
    UNION
    SELECT employee_id, department_id
    FROM employees
    WHERE department_id=90
    UNION
    SELECT employee_id, department_id
    FROM employees
    WHERE department_id=10;
    What would be the outcome of the above SQL statement?
  • Question 205

    View the Exhibit and examine the structure of CUSTOMERS table.

    Evaluate the following query:

    Which statement is true regarding the above query?