I have a query to return a resultset of decimal(30,12) type data.
SELECT sales from invoice_index;
This query is giving me output like this:
sales
------
100
-200
300
But I need an output as follow:
sales
----
-100
200
-300
I have a query to return a resultset of decimal(30,12) type data.
SELECT sales from invoice_index;
This query is giving me output like this:
sales
------
100
-200
300
But I need an output as follow:
sales
----
-100
200
-300