How do I create a left justified, zero filled (leading zeros for a total 10 bytes) result from this select? The field is (DECIMAL 9,2)...
I need the results to be formated like this sample..
00000123.54
00000069.95
Rather then this
123.54
69.95
Thanks In Advance!
Code:
Select
sum(d.PRICE) as "Dollars"
I need the results to be formated like this sample..
00000123.54
00000069.95
Rather then this
123.54
69.95
Thanks In Advance!