SELECT c.customer_name, COUNT(o.order_id) AS total_orders, SUM(o.total_amount) AS total_revenue FROM customers c JOIN orders o ON c.customer_id = o.customer_id GROUP BY c.customer_name HAVING COUNT(o.order_id) > 1 ORDER BY total_revenue DESC;