Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
1  
That expanded part would be better as a new question. – RedFilter Sep 17 '09 at 18:44
Kinda duplicate of stackoverflow.com/questions/122523/… – Otávio Décio Sep 17 '09 at 18:45
@OrbMan: agree, eliminated – ioSamurai Sep 17 '09 at 18:56

4 Answers

up vote 38 down vote accepted

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

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

Chart, stolen from that page:

enter image description here


Updated 1/7/2013 - there's a more recent version, .not so colorful here: http://msdn.microsoft.com/en-us/library/cc716729.aspx

share|improve this answer
2  
That chart is awesome, thanks for referencing it. – Matthew Vines Sep 17 '09 at 18:44
2  
winner by a chart, I just printed it out and rubbed it all over my eyeballs, thanks! – ioSamurai Sep 17 '09 at 18:56
Thanks. Nice typo by Microsoft in there - DECIMIAL – Andez Nov 22 '12 at 11:06

That would be float.

See Mapping CLR Parameter Data.

share|improve this answer

Float is the sql type you are looking for.

share|improve this answer
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 '09 at 19:05

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

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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