Exam Name: | Oracle Database 12c SQL | ||
Exam Code: | 1z0-071 Dumps | ||
Vendor: | Oracle | Certification: | Oracle PL |
Questions: | 326 Q&A's | Shared By: | arlen |
Examine the description of the EMPLOYEES tableļ¼
You write this failing 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?
Examine this query:
SELECT employee_id,first_name,salary
FROM employees
WHERE hire_date>'&1';
Which two methods should you use to prevent prompting for a hire date value when this query is executed?