I'm new to SQL Server and struggling with this.
I have two select statements
SELECT
SUM(Amount) AS "MONDAY"
FROM
Transaction
WHERE
Transaction_Date = '2015-12-21 00:00:00.000'
SELECT
SUM(Amount) AS "TUESDAY"
FROM
Transaction
WHERE
Transaction_Date = '2015-12-22 00:00:00.000'
Their result is 2,00,000 and 3,00,000 respectively
I want the output to be shown as two columns
(Column 1 + Monday) and (Column 2 = Tuesday) on SQL Server screen