先转换成decimal,再转换成字符型就行了. 例如: declare @a float set @a=1.6007e+007 select convert(nvarchar(38),convert(decimal(38,0),@a))