Write a SQL query to find the top five products by sales at Enova International.
Use the sales amount recorded for each transaction to calculate total sales for each product. Return only products with recorded product names, ordered from highest total sales to lowest, with product name as the tie-breaker.
product_name and total_sales.total_sales descending, then product_name ascending.| Column | Type | Description |
|---|---|---|
| sale_idPK | INT | Unique identifier for the sale transaction |
| product_name | VARCHAR(100) | Name of the product sold |
| sale_amount | NUMERIC(12,2) | Recorded sales amount for the transaction |