vote up 1 vote down star

Say I'm inserting a 64 bit floating point double into a DECIMAL(17,5) field. Does the value get rounded or truncated?

flag

2 Answers

vote up 3 vote down check

It rounds:

select cast(9.12345 as decimal(10,4))

Returns 9.1235

link|flag
Good test. You could also create a temp table to test it out. – Esteban Araya Aug 21 at 20:42
@Esteban: I suppose you could, but I'm lazy. – Eric Aug 21 at 20:43
vote up 0 vote down

Why don't you just try it out?

link|flag
1  
Welcome to StackOverflow! Please read meta.stackoverflow.com/questions/16353 to understand how/why we treat newbie questions the way we do. – Eric Aug 21 at 20:38

Your Answer

Get an OpenID
or

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