ASA SQL Reference
SQL Data Types
Numeric data types
Integer requiring 8 bytes of storage.
[ UNSIGNED ] BIGINT
The BIGINT data type is an exact numeric data type: its accuracy is preserved after arithmetic operations.
A BIGINT value requires 8 bytes of storage.
The range for signed BIGINT values is -263 to 263 - 1, or -9223372036854775808 to 9223372036854775807.
The range for unsigned BIGINT values is 0 to 264 - 1, or 0 to 18446744073709551615.
By default, the data type is signed.
SQL/92 Vendor extension.
Sybase Not supported in Adaptive Server Enterprise.
INT or INTEGER data type [Numeric]