How do I convert 0.50 to 50 or 0.1429 to 14.29 in sql query? My data type is real.
Thanks ... stupid question from my part..
Johnny
2010-05-25 12:28:45
+2
A:
You can multiply it by 100. : )
I'm not sure exactly what you are doing, but it's like this:
Select 0.50 *100 as MyNewNumber
or
Select MyColumn *100 as MyNewNumber
rlb.usa
2010-05-25 12:28:03