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
float
SQL Server
You can also do something much shorter:
SELECT FORMAT(2.3332232,'N2')