Is it money, float, real, decimal, _____ ?
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
2009-09-17 19:05:56
+10
A:
Answer to this and all mapping of types can be found here.
David Stratton
2009-09-17 18:42:46
winner by a chart, I just printed it out and rubbed it all over my eyeballs, thanks!
shogun
2009-09-17 18:56:00
+2
A:
float matches best. real is only 32 bits in precision, so essentially useless.
Philippe Leybaert
2009-09-17 18:43:08