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 Make use of the Following if you want to Cast and Round as well. That may help you or someone else.
SELECT CAST(ROUND(Column_Name, 2) AS DECIMAL(10,2), Name FROM Table_Name