1z1-071 Exam Question 76
Examine the structure of the EMPLOYEES table. (Choose two.)

You must display the maximum and minimum salaries of employees hired 1 year ago.
Which two statements would provide the correct output?

You must display the maximum and minimum salaries of employees hired 1 year ago.
Which two statements would provide the correct output?
1z1-071 Exam Question 77
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?

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?
1z1-071 Exam Question 78
Which three statements are true? (Choose three.)
1z1-071 Exam Question 79
Examine the description of the CUSTOMERS table:
Which three statements will do an implicit conversion?
Which three statements will do an implicit conversion?
1z1-071 Exam Question 80
Which three are true about the MERGEstatement?