How would I change this select statement so that it formats as a currency with commas

Viewed 32
SELECT sv.PARENTACCOUNT as 'Account Number'
, sum(case when BALANCECHANGE >0 then BALANCECHANGE else 0 end) as 'Total Credits'
, sum(case when BALANCECHANGE<0 then BALANCECHANGE else 0 end) as 'Total Debits'

How would I change this select statement so that it formats as a currency with commas. I would like the sums to be currency

1 Answers
Related