A.SELECT AccountID ,COUNT(*)FROM Transactions WHERE YEAR(TransactionDate)=2023GROUP BY AccountID;
B.SELECT AccountID ,COUNT(TransactionDate)FROM Transactions WHERE TransactionDate BETWEEN ’2023-01-01’AND ’2023-12-31’;
C.SELECT AccountID ,TRANSACTION_COUNT FROM Transactions WHERE YEAR(TransactionDate)=2023;
D.SELECT AccountID ,COUNT(*)FROM Transactions WHERE MONTH(TransactionDate)BETWEEN 1AND 12;