To find the top 5 most expensive items in the database, write a SQL query that orders the items by price in descending order.
The solution above is optimal because it uses the ORDER BY and LIMIT clauses to sort the items by price in descending order and then limit the results to the top 5 items.
Evaluated at: 2022-11-23 08:16:13