PostgreSQL – BIGINT Integer Data Type
Last Updated :
05 Nov, 2024
PostgreSQL is a powerful open-source relational database management system that offers various integer data types to suit different needs. One of these is the BIGINT data type, designed for storing very large integers.
In this article, we will explain the details of the BIGINT data type in PostgreSQL, including its characteristics, syntax, practical examples, and its significance in various applications.
PostgreSQL – BIGINT Integer Data Type
The BIGINT data type in PostgreSQL is a signed 64-bit integer that can store a wide range of numerical values. This type requires 8 bytes of storage and can handle values ranging from -9,223,372,036,854,775,808 to +9,223,372,036,854,775,807.
The BIGINT data type is particularly useful for scenarios where we need to store large numerical values that exceed the limits of standard integer types. Understanding when and how to use BIGINT is important for effective database design.
Syntax
variable_name BIGINT
Examples of PostgreSQL BIGINT Integer Data Type
Now let’s look into some examples of use cases of BIGINT integer Data type.
Example 1: Storing the Number of Stars in Galaxies
In this example we will create a table that stores the number of stars in various galaxies by using the below commands. The BIGINT data type is ideal for this purpose due to the large numbers involved.
Query:
CREATE TABLE galaxy
(
id SERIAL PRIMARY KEY,
name VARCHAR (255) NOT NULL,
stars BIGINT NOT NULL CHECK (stars> 0)
);
INSERT INTO galaxy(name, stars)
VALUES
('Milky_Way', 2500000000000),
('Bodes', 2700000000000),
('Cartwheel', 1300000000000),
('Comet', 5700000000000);
SELECT * FROM galaxy;
Output

Explanation:
This query displays the galaxies and their respective star counts, demonstrating how BIGINT can effectively handle large numbers.
Example 2: Storing Scientific Constants
In this example we will create a table that stores the value of various scientific constants by using the below commands:
Query:
CREATE TABLE constants
(
id SERIAL PRIMARY KEY,
name VARCHAR (255) NOT NULL,
value BIGINT NOT NULL CHECK (value> 0)
);
INSERT INTO constants(name, value)
VALUES
('Mole', 602213950000000000),
('Rydberg_constant', 10973731568525000),
('Bohr_radius ', 13000000000);
SELECT * FROM constants;
Output

Explanation:
This query displays scientific constants and their respective values, showcasing the ability of BIGINT to store large amounts of data.
Conclusion
The BIGINT
data type in PostgreSQL is a powerful tool for storing very large numerical values. However, due to its significant storage requirements and potential performance impacts, it should be used only when necessary. By understanding its characteristics, syntax, and practical applications, we can use BIGINT to enhance our database schema and improve data integrity.
FAQs
What is the integer data type in PostgreSQL?
The integer data type in PostgreSQL, also known as INT, is a 4-byte signed integer that stores whole numbers ranging from -2,147,483,648 to 2,147,483,647.
What is BIGINT vs integer?
BIGINT is an 8-byte signed integer in PostgreSQL, allowing for a range from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807, while integer (INT) is a 4-byte type with a range of -2,147,483,648 to 2,147,483,647.
What is the data type of BIGINT?
The BIGINT data type in PostgreSQL is an 8-byte signed integer used to store large whole numbers exceeding the limits of the standard integer type
Similar Reads
PostgreSQL - BIGINT Integer Data Type
PostgreSQL is a powerful open-source relational database management system that offers various integer data types to suit different needs. One of these is the BIGINT data type, designed for storing very large integers. In this article, we will explain the details of the BIGINT data type in PostgreSQ
3 min read
PostgreSQL - INTEGER Data Type
In PostgreSQL, the INTEGER data type is widely used for storing numerical data efficiently. It is a 4-byte data type that allows us to store whole numbers within a specified range, making it ideal for various use cases like population counts, active user statistics, and more. In this article, we wil
4 min read
PostgreSQL - Interval Data Type
The interval data type in PostgreSQL stores time periods using 16 bytes of storage and supports a range from -178,000,000 years to 178,000,000 years. It provides a precision attribute ('p') that allows you to specify the number of fractional digits retained in the seconds field, enhancing the precis
2 min read
PostgreSQL - SMALLINT Integer Data Type
In PostgreSQL, the SMALLINT data type is a compact, efficient way to store integer values within a small range. Using only 2 bytes of storage, SMALLINT is ideal for scenarios where the range of possible values is relatively small, such as the age of individuals or the number of pages in a book. In t
4 min read
PostgreSQL - Date Data Type
PostgreSQL offers powerful DATE data type and date functions to efficiently handle date and time information. PostgreSQL DATE data type allows for storing and manipulating calendar dates while its robust set of date functions enables users to perform operations like date arithmetic and formatting. I
4 min read
PostgreSQL - NUMERIC Data Type
In PostgreSQL, the NUMERIC data type is designed for high-precision number storage by making it ideal for financial and scientific applications where accuracy is critical. It supports a large number of digits both before and after the decimal point, minimizing rounding errors. Understanding the nuan
5 min read
PostgreSQL - Boolean Data Type
PostgreSQL's Boolean data type supports three states: TRUE, FALSE, and NULL. It uses a single byte to store Boolean values and can be abbreviated as BOOL. In this article, we will explain the PostgreSQL BOOLEAN data type and its implementation in database table design, highlighting its usage through
4 min read
PostgreSQL - Copying Data Types
When working with PostgreSQL, you can define a variable that directly references the data type of a column in a table or the data type of another variable. This feature is useful when you want to maintain consistency and avoid repetitive changes to your code whenever the data type of a column is alt
3 min read
PostgreSQL - Data Types
PostgreSQL is a robust open-source relational database management system that supports a wide variety of data types. These data types are essential for defining the nature of the data stored in a database column, affecting storage, access, and manipulation. In this article, We will learn about the P
5 min read
SQL Server BIT Data Type
The BIT data type is used to store boolean values like 0, 1, or NULL. The SQL server doesn't have the data Boolean instead it has the data type BIT which has which stores the boolean value. The BIT data type is advantageous in terms of space optimization since each BIT data type takes on only 1 bit
3 min read