Write a PostgreSQL query on ramp_card_transactions that returns total approved spend by month for calendar year 2024. Show the month as YYYY-MM and sort the output by total spend descending.
| Column | Type | Description |
|---|---|---|
| transaction_id | INT | Unique transaction ID |
| employee_name | VARCHAR(100) | Employee who made the purchase |
| merchant_name | VARCHAR(100) | Merchant on the card transaction |
| transaction_date | DATE | Date of the transaction |
| amount | DECIMAL(10,2) | Transaction amount in USD |
| status | VARCHAR(20) | Transaction status |