How to display two digits after decimal point in SQL Server

后端 未结 4 1402
生来不讨喜
生来不讨喜 2020-12-23 09:27

I have table which has a column of float data type in SQL Server I want to return my float datatype column value with 2 decimal places

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-23 09:53

    You can also do something much shorter:

    SELECT FORMAT(2.3332232,'N2')

提交回复
热议问题