Challenge: Monthly VIP Customer Report
Swipe to start coding
Write a query to generate a monthly report of VIP customers based on their transaction history. A customer is considered "VIP" for a given month if they have a total transaction amount of at least 500 and have made at least 2 transactions in that month.
- Group transactions by month and customer.
- Calculate the total transaction amount for each customer per month.
- Count the number of transactions for each customer per month.
- Use
CASE WHENto label customers as'VIP'if they meet both criteria: total amount >= 500 and transaction count >= 2. - Only include customers who qualify as VIP in the results.
Lösung
Danke für Ihr Feedback!
single
Fragen Sie AI
Fragen Sie AI
Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen
Großartig!
Completion Rate verbessert auf 4.17
Challenge: Monthly VIP Customer Report
Swipe um das Menü anzuzeigen
Swipe to start coding
Write a query to generate a monthly report of VIP customers based on their transaction history. A customer is considered "VIP" for a given month if they have a total transaction amount of at least 500 and have made at least 2 transactions in that month.
- Group transactions by month and customer.
- Calculate the total transaction amount for each customer per month.
- Count the number of transactions for each customer per month.
- Use
CASE WHENto label customers as'VIP'if they meet both criteria: total amount >= 500 and transaction count >= 2. - Only include customers who qualify as VIP in the results.
Lösung
Danke für Ihr Feedback!
single