Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

double data type

Status
Not open for further replies.

mp89

Programmer
Sep 17, 2004
35
GB
What is the equivalent of a C# double in SQL Server?


Cheers,

Mike
 
I don't know a lot about C#, but here are the types that are probably cosest. You can select the one you think will work.

decimal:

Code:
Fixed precision and scale numeric data from -10^38 +1 through 10^38 –1.

float:

Code:
Floating precision number data from -1.79E + 308 through 1.79E + 308.

real:

Code:
Floating precision number data from -3.40E + 38 through 3.40E + 38.


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top