Examine the description of the EMPLOYEES table:

A:SELECT dept_id, job_cat, MAX(salary) FROM employees WHERE salary > MAX(salary);
B:SELECT dept_id, job_cat, MAX(salary) FROM employees GROUP BY dept_id, job_cat;
C:SELECT dept_id, job_cat, MAX(salary) FROM employees;
D:SELECT dept_id, job_cat, MAX(salary) FROM employees GROUP BY dept_id;
E:SELECT dept_id, job_cat, MAX(salary) FROM employees GROUP BY dept_id, job_cat, salary;
出自:Oracle认证