Forcing decimal places on string
RanieriOct 2 2009 — edited Oct 2 2009Hello,
I have a table where number are stored in varchar columns... below I show an example:
3000
4000
7200.45
5471.4
145.14
What I need is to get these values with 2 decimal places... as the result below:
3000.00
4000.00
7200.45
5471.40
145.14
How could I do this?
Thanks