A developer needs to write a query that retrieves the top 10 most recently hired employees from an `employees` table. Which query correctly accomplishes this, assuming `hire_date` is the column storing the hiring date?
-
A
SELECT * FROM employees ORDER BY hire_date ASC LIMIT 10;
-
B
SELECT TOP 10 * FROM employees ORDER BY hire_date;
-
C
SELECT * FROM employees ORDER BY hire_date DESC LIMIT 10;
-
D
SELECT * FROM employees FETCH FIRST 10 ROWS ONLY;