OCP CBT Question 655

Please solve the following question.

You need to retrieve the `first_name` and `last_name` of employees who were hired in the year 2005, sorted by their `last_name` in ascending order. Which query is correct?

sqlSELECT first_name, last_name, hire_date FROM employees;

EMPLOYEES Table Structure

Column Name Data Type
HIRE_DATE DATE