BIGINT
The BIGINT function returns a very large integer representation of a number.
numericExpression | The numericExpression is converted to a big integer data type from one of the following numerical data types:
The numerical expression is not rounded before conversion and any fractional part is truncated. If the result exceeds the allowable values for a BIGINT, an overflow condition occurs. The valid range is - 9223372036854775808 through 9223372036854775807 . |
stringExpression | The stringExpression can be in any external numerical format. It is first converted to its corresponding format, and then converted to BIGINT. If the CCSID of the string is not in the EBCDIC encoding scheme, the CCSID is cast to EBCDIC CCSID(37) before conversion takes place. |
Related topics