Hi all,
Starting from a number (10,2) I need to conver in varchar preserve leading zero e "." as decimal separator.
Here some example:
number string (result)
------------------------------------------------
0,22 0.22
10,2 10.2
1234,33 1234.33
How is the best solution?
Ugo