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 use below code which helps me:
select convert(numeric(10,2), column_name) as Total from TABLE_NAME
where Total is alias of the field you want.
Total