Hi,
I have a procedure which reports some values. The results e.g. for prices are [as measures]
100.01
99.1
75
But I want to the have the whole formating already include in the SQL-script, so it should look like
100.01
99.10
75.00
Do I need to convert the digits to VARCHAR and then manipulate the string? Or is there an easier solution?
I tried something like
out=SELECT ROUND(price,2)....
but this didn't help.
roland