I'm trying to format a numeric value always in the format "9 999,99" (notice the space).
The problem is that oracle does not provide me a a numeric mask for getting this format.
The closest I get is with to_char(value,'99990,99'), But no way of putting that space after the third digit.
some examples of what I would like to get 1345.67 -> 1 345,67 12356.00 -> 12 356,00 0.56 -> 0,56
How could I do this, maybe using a regular expresion?? any idea?