
November 14th, 2003, 11:23 AM
|
|
Registered User
|
|
Join Date: Nov 2003
Posts: 21
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
never tried, but if simply changing the datatype to decimal rounds everything off to whole numbers, i would create a new table, delete the old table and then rename the new one to match the old one... may not be the best way but it should work.
select column1, column2, convert(decimal(5,2), column3)
into newtable
from oldtable
|