I have the following query and want to round the sums to 2 decimal places:SELECT table1.customer, ROUND (SUM(case when table2.brand = '1' then (table3.Qty * table4.Milliliters) / 100000 else 0 end),2) AS "coke", SUM(case when table2.brand = '2' then (table3.Qty * table4.Milliliters) / 100000 else 0 end) AS "pepsi",FROM [TBS_Files].[dbo].[table1], [TBS_Files].[dbo].[table2], [TBS_Files].[dbo].[table3], [TBS_Files].[dbo].[table4], [TBS_Files].[dbo].[table5]WHERE table3.id = table5.id and table5.Cust_no = table1.Cust_no and table3.brand = table2.brand and table4.Size = table3.SizeGROUP BY table2.brand, customer, Qty, Milliliters
How can I round the SUMs I am SELECTing to 2 decimal places??