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 minimum lastname?
SELECT MIN LASTNAME FROM EMPLOYEES;
SELECT MIN(LASTNAME) FROM EMPLOYEES;Correct
SELECT COUNT (MIN(LASTNAME)) FROM EMPLOYEES;
SELECT COUNT (DISCTINCT MIN(LASTNAME)) FROM EMPLOYEES;