Why is a SQL float different from a C# float Why is a SQL float different from a C# float sql sql

Why is a SQL float different from a C# float


And normally you would never want to use float in SQL Server (or real) if you plan to perform math calculations on the data as it is an inexact datatype and it will introduce calculation errors. Use a decimal datatype instead if you need precision.