SQL数据类型中的数字和整数之间的区别? [重复]

时间:2022-06-10 10:25:04

This question already has an answer here:

这个问题在这里已有答案:

i want to know the basic difference between sql datatype Number and Integer.

我想知道sql数据类型Number和Integer之间的基本区别。

1 个解决方案

#1


0  

Number allows a decimal component (Ex: 3.43) Integer doesn't. If you try to store 3.43 in an Integer, it will just store 3

Number允许使用小数部分(例如:3.43)整数不会。如果您尝试在整数中存储3.43,它将只存储3

Number allows for much larger values than Integer does.

Number允许比Integer更大的值。

If you are using whole numbers, I recommend using Integer. If you are using numbers that may have a decimal component, I recommend Number.

如果您使用整数,我建议使用整数。如果您使用的数字可能包含小数,我建议使用数字。

#1


0  

Number allows a decimal component (Ex: 3.43) Integer doesn't. If you try to store 3.43 in an Integer, it will just store 3

Number允许使用小数部分(例如:3.43)整数不会。如果您尝试在整数中存储3.43,它将只存储3

Number allows for much larger values than Integer does.

Number允许比Integer更大的值。

If you are using whole numbers, I recommend using Integer. If you are using numbers that may have a decimal component, I recommend Number.

如果您使用整数,我建议使用整数。如果您使用的数字可能包含小数,我建议使用数字。