Firebird Documentation IndexFirebird 1.5 Language Ref. UpdateData types and subtypes → BIGINT data type
Firebird Home Firebird Home Prev: Data types and subtypesFirebird Documentation IndexUp: Data types and subtypesNext: New character sets

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)
)
Prev: Data types and subtypesFirebird Documentation IndexUp: Data types and subtypesNext: New character sets
Firebird Documentation IndexFirebird 1.5 Language Ref. UpdateData types and subtypes → BIGINT data type