Home Forums SQL Server 7,2000 T-SQL Banker''s rounding in T-SQL (like Math.Round in .NET) RE: Banker''''s rounding in T-SQL (like Math.Round in .NET)

  • That's realy baker's rounding but with one weakness - it rounds only one digit before precision digit.

    For instance: rounding of 3.445657545 to second digit after dot takes no account of digits on the right.

    It should round digit by digit for the rightest to the precision digit. That's the main problem!