Write a query to find the top 5 clients by total transaction volume in the last 30 days, including their total asset value.
Use the provided client, transaction, and asset tables. Treat the last 30 days relative to CURRENT_DATE; clients without a matching asset record should still be eligible.
Output
- One row per qualifying client with
client_id, client_name, total_transaction_volume, and total_asset_value
- Include the five highest transaction volumes, ordered descending, with
client_id ascending as the tie-breaker