Firebird Documentation Index → Firebird 2.1 Language Ref. Update → Data types and subtypes → BIGINT data type |
Added in: 1.5
Description: BIGINT is the SQL99-compliant 64-bit signed integer type. It is available in Dialect 3 only.
BIGINT numbers range from -263 .. 263-1, or -9,223,372,036,854,775,808 .. 9,223,372,036,854,775,807.
Example:
create table WholeLottaRecords ( id bigint not null primary key, description varchar(32) )
Firebird Documentation Index → Firebird 2.1 Language Ref. Update → Data types and subtypes → BIGINT data type |