I've got an oracle query like this:
SELECT floatColum0,floatColum1,ROUND(floatColum2,2) from table;
which is returning values like that:
.2 , 1.23, .23
how can I get something like that? (leading zeros)
0.2, 1.23, 0.23 ?
|
I've got an oracle query like this:
which is returning values like that:
how can I get something like that? (leading zeros)
|
|||||
|
|
It isn't the numbers whose leading zeroes are being
This should do the trick, but again remember, it is a pretty pointless exercise. For additional details: http://docs.oracle.com/cd/B19306_01/server.102/b14200/sql_elements004.htm#SQLRF00211 |
|||
|
I think your problem might be Regional Settings. Make this:
and change the value for what you want. |
|||
|
|
|
You could try casting it as varchar and using a case statement to add a zero if the first character is a '.' (and adding nothing if its anything else). Im not an Oracle expert but I dont think you could 'add' zeros without changing data type. |
|||
|
|