Sep 15, 2003 #1 password99 Technical User Joined Jul 19, 2002 Messages 122 Location US I need to store values ranging from -999.99 to 999.99 What datatype do you recommend for storing these values?
I need to store values ranging from -999.99 to 999.99 What datatype do you recommend for storing these values?
Sep 15, 2003 #2 JohnDTampaBay Programmer Joined Jul 12, 2002 Messages 986 Location US From BOL: smallint Integer data from 2^15 (-32,768) through 2^15 - 1 (32,767). --Angel ----------------------------------- Every time I lose my mind, I wonder if it's really worth finding. Upvote 0 Downvote
From BOL: smallint Integer data from 2^15 (-32,768) through 2^15 - 1 (32,767). --Angel ----------------------------------- Every time I lose my mind, I wonder if it's really worth finding.
Sep 15, 2003 #3 JohnDTampaBay Programmer Joined Jul 12, 2002 Messages 986 Location US Oops! A little too quick. decimal Fixed precision and scale numeric data from -10^38 +1 through 10^38 –1. --Angel ----------------------------------- Every time I lose my mind, I wonder if it's really worth finding. Upvote 0 Downvote
Oops! A little too quick. decimal Fixed precision and scale numeric data from -10^38 +1 through 10^38 –1. --Angel ----------------------------------- Every time I lose my mind, I wonder if it's really worth finding.