To find the top 3 customers with the highest average order value, you can use a SQL query. This query will take the customer data from a table and find the 3 customers with the highest average order value.
This solution is optimal because it uses the GROUP BY and ORDER BY clauses to group the data by customer ID and then order the data by the average order value. The LIMIT clause is used to limit the results to the top 3 customers.
Evaluated at: 2022-11-19 14:15:58