converting from float to varchar | SQL Server Performance Forums
I'm not a developer but: declare @test float(25) declare @test1 decimal(10,2) select @test = 14730.48 select @test set @test1 = convert (decimal(10,2), @test) select cast((@test1) as varchar(12)) HTH Luis Martin Moderator SQL-Server-Performance.com One of...