Write a SQL query to find the top 10 customers by total spent.
The solution is optimal because it uses the ORDER BY and LIMIT clauses to sort the table by total_spent in descending order and then limit the results to the top 10 customers.
Evaluated at: 2023-01-28 00:15:28