Click the Exhibit button and examine the data in the EMPLOYEES table.<br /> Examine the subquery:<br /> SELECT last_name<br /> FROM employees<br /> WHERE salary IN (SELECT MAX(salary)<br /> FROM employees<br /> GROUP BY department_id);<br /> Which statement is true?()<br /> <img src="https://nimg.ppkao.com/2018-08/zhangxu/2018080114074759009.jpg?sign=a10ed11d3fd6b2b0b4672d898c81b61c&t=62d4b839" />
A、The SELECT statement is syntactically accurate.
B、The SELECT statement does not work because there is no HAVING clause.
C、The SELECT statement does not work because the column specified in the GROUP BY clause is not in the SELECT list.
D、The SELECT statement does not work because the GROUP BY clause should be in the main query and not in the subquery.