I've been trying to create a summary report which will sum total for the week and group it by date. Please what i'm doing wrong
SELECT
SUM(Numb1) AS [ Registration],
SUM(Numb2) AS [RENEWAL],
SUM(Penalty) AS PENALTY,
SUM(MTR),
SUM(numb3) AS PH,
SUM(Insurance) AS INSURANCE,
SUM(nub4) AS [data received],
SUM(Numb1)+ SUM(Numb2)+ SUM(Penalty)+ SUM(MTR), SUM(numb3) + SUM(Insurance)+ SUM(nub4) AS [TOTAL SUM]
FROM dbo.Vehicle_Transactions
GROUP BY transaction_date