1 point
26. Jessica is working on a data analysis project. She must retrieve only the top 10 rows from a database table ordered by a specific column in descending order. Which SQL statement should she use?
LIMIT 10
ORDER BY column_name DESC LIMIT 10
SELECT * FROM table_name WHERE ROWNUM <= 10 ORDER BY column_name DESC
SELECT TOP 10 * FROM table_name ORDER BY column_name DESC
FUO