How would I combine the following 2 select statements, so the results end up in one row ?
SELECT (SUM (CAST(Amount AS FLOAT))) AS 'Total Amoun', (COUNT(BranchCode))AS 'TOTAL COUNT' FROM [Transaction Table]WHERE AccountType='Savings' AND Status='Successful' AND BranchCode='51001' SELECT Status, AccountType, BranchCode FROM [Transaction Table]WHERE AccountType='Savings' AND Status='Successful' AND BranchCode='51001'