What represents a double in sql server?

Or if you want to go old-school: You can also use float(53), but it means the same thing as float. (“real” is equivalent to float(24), not float/float(53).) The decimal(x,y) SQL Server type is for when you want exact decimal numbers rather than floating point (which can be approximations). This is in contrast to the C# “decimal” data type, which … Read more