8 Week SQL Challenge - Case Study 4 (Customer Transactions)
Moving on to focus area: B. Customer Transactions which is all about the customers and the transactions they have performed with Data Bank
What is the unique count and total amount for each transaction type?
SELECT
txn_type,
COUNT(txn_type) ...
maryjonah.hashnode.dev2 min read