Question: 1
Which two are true about constraints?
Question: 2
Examine the description of the EMPLOYEES table:
You write this falling statement:
SELECT dept-no AS department_id MAX (salary) AS max-sal
FROM employees
WHERE salary > 10000
GROUP BY department_id
ORDER BY max-sal:
Which clause causes the error?
Question: 3
Which two are true about savepoints?
Question: 4
Examine the description of the EMPLOYERS table:
Examine these requirements:
Disable the manager ID and salary of the lowest paid employees for that manager.
Exclude anyone whose manager is not known.
Exclude any managers where the minimum salary is 6000 or less.
Sort the output by minimum salary with the highest salary shown first.
Which statement will do this?
Question: 5
Examine the contents of the EMP table:
What is the result?