Write a SQL query to find the most recent order date for each customer in a given table. The table should have the following columns: customer_id, customer_name, order_date .
The solution above is optimal because it uses the MAX function to find the most recent order date for each customer.
Evaluated at: 2022-11-12 02:15:55