1z1-071 Exam Question 236

Which three are true about scalar subquery expressions?
  • 1z1-071 Exam Question 237

    Which three statements are true about single-row functions? (Choose three.)
  • 1z1-071 Exam Question 238

    View the Exhibit and examine the structures of the employees and departments tables.
    You must update the employees table according to these requirements::
    -Update only those employees who work in Boston or Seattle (locations 2900 and 2700).
    -Set department_id for these employees to the department id corresponding to London (locationid 2100).
    -Set the employees' salary in iocation_id 2100 to 1.1 times the average salary of their department.
    -Set the employees' commission In location_id 2100 to 1.5 times the average commission of their department.
    You issue this command:
    What is the result?
  • 1z1-071 Exam Question 239

    View the Exhibit and examine the structure of the EMPLOYEES and JOB_HISTORY tables.

    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. (Choose two.)