I have a case statement in my SQL query like this
Sum(case when amount_d_c= 'd' then -amount else Amount end)As total_amount
My resullts contain numbers with + and - signs.
I want my results to appear again as d if -ve and c if +ve.
Can I add another case statement? If yes how
Please help