vote up 5 vote down star
2

Is it money, float, real, decimal, _____ ?

flag

37% accept rate
1  
That expanded part would be better as a new question. – OrbMan Sep 17 at 18:44
Kinda duplicate of stackoverflow.com/questions/122523/… – ocdecio Sep 17 at 18:45
@OrbMan: agree, eliminated – Ryan Sep 17 at 18:56

4 Answers

vote up 10 vote down check

Answer to this and all mapping of types can be found here.

http://msdn.microsoft.com/en-us/library/bb386947.aspx

link|flag
1  
That chart is awesome, thanks for referencing it. – Matthew Vines Sep 17 at 18:44
winner by a chart, I just printed it out and rubbed it all over my eyeballs, thanks! – Ryan Sep 17 at 18:56
vote up 5 vote down

Float is the sql type you are looking for.

link|flag
You are right that is the best match. Sadly Float is one of the worst datatypes you can use in SQL Server if you will need to perform math onthe field later as it creates rounding errors since it is not exact. As a dba I would not want people to define fields as float as I have had to deal with the mess they create when you want to do reporting on the data in the database and the calculations are incorrect. – HLGEM Sep 17 at 19:05
vote up 9 vote down

That would be float.

See Mapping CLR Parameter Data.

link|flag
vote up 2 vote down

float matches best. real is only 32 bits in precision, so essentially useless.

See: http://msdn.microsoft.com/en-us/library/ms173773.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.