The INTEGER data type is an exact numeric data type;its accuracy is preserved after arithmetic operations.If you specify UNSIGNED; the integer can never beassigned a negative number. By default, the data type issigned. The range for signed integers is from (-2e31) to ( +2e31 -1 ).The range for unsigned integers is from 0 to( 2e32 -1 ).