I have a SQL Server table called Fund Details with a column named Annualised Return (%) of type float size 8.
I am using the below SQL to select the Annualised Return (%) value at 2 decimal places:
SELECT ROUND([Annualised Return (%)], 2) FROM [Fund Details]
This works for most tuples in my table, but not all. Some values are still being returned as full floats. Can anyone suggest a possible reason and solution for this?
Many thanks in advance.
Start Free Trial