Examine the description of the EMPLOYEES table: https://assets.asklib.com/images/image2/2018080114592471196.jpg Which statement shows the maximum salary paid in each job category of each department?()

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

时间:2022-10-27 12:52:27 所属题库:1Z0-007题库

相似题目