what is numeric(18, 0) in sql server 2008 r2

后端 未结 2 1451
遇见更好的自我
遇见更好的自我 2021-02-02 06:18

I found a table with this a column from this data type

numeric(18, 0)

what is that please? and why does 0 and 18 me

2条回答
  •  萌比男神i
    2021-02-02 06:46

    This page explains it pretty well.

    As a numeric the allowable range that can be stored in that field is -10^38 +1 to 10^38 - 1.

    The first number in parentheses is the total number of digits that will be stored. Counting both sides of the decimal. In this case 18. So you could have a number with 18 digits before the decimal 18 digits after the decimal or some combination in between.

    The second number in parentheses is the total number of digits to be stored after the decimal. Since in this case the number is 0 that basically means only integers can be stored in this field.

    So the range that can be stored in this particular field is -(10^18 - 1) to (10^18 - 1)

    Or -999999999999999999 to 999999999999999999 Integers only

提交回复
热议问题