Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhich of the following is the correct query that displays the maximum salary?
SELECT MAX SALARY FROM EMPLOYEES;
SELECT COUNT (MAX(SALARY)) FROM EMPLOYEES;
SELECT MAX(SALARY) FROM EMPLOYEES;Correct
SELECT COUNT (DISCTINCT MAX(SALARY)) FROM EMPLOYEES;