Link to home
Start Free TrialLog in
Avatar of rbmacct
rbmacct

asked on

How do I add a double data type column to a table?

I need to store double numbers into a table such as  "3.35E+178" , "5.88E+307", "1.5E-06 "what is the best data type to store them? I was thinking about double I am not sure ho to do it.
ASKER CERTIFIED SOLUTION
Avatar of Yiogi
Yiogi

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sbagireddi
sbagireddi

Float or real data type.

Check sql server books online depending on your range.
Avatar of rbmacct

ASKER

Thanks.