Contents Index Numeric data types DECIMAL data type [Numeric]

ASA SQL Reference
  SQL Data Types
    Numeric data types

BIGINT data type [Numeric]


Function 

Integer requiring 8 bytes of storage.

Syntax 

UNSIGNED ] BIGINT

Usage 

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.

Standards and compatibility 
See also 

INT or INTEGER data type [Numeric]

TINYINT data type [Numeric]

SMALLINT data type [Numeric]


Contents Index Numeric data types DECIMAL data type [Numeric]