Skip to content

Postgres Data Types

Posted on:March 10, 2025 at 01:21 PM

Table of contents

Open Table of contents

Overview

some of the categories of data types in Postgres

Numeric Types

Numbers with no decimal points

NameStorageDescriptionRange
smallint2 bytessmall-range integer-32768 to +32767
integer4 bytestypical choice for integer-2147483648 to +2147483647
bigint8 byteslarge-range integer-9223372036854775808 to +9223372036854775807

Numbers with no decimal points, auto increment

NameStorageDescriptionRange
smallserial2 bytessmall autoincrementing integer1 to 32767
serial4 bytesautoincrementing integer1 to 2147483647
bigserial8 byteslarge autoincrementing integer1 to 9223372036854775807

Numbers with decimal points

NameStorageDescriptionRange
decimalvariableuser-specified precision, exactup to 131072 digits before the decimal point; up to 16383 digits after the decimal point
numericvariableuser-specified precision, exactup to 131072 digits before the decimal point; up to 16383 digits after the decimal point
real4 bytesvariable-precision, inexact6 decimal digits precision
double precision8 bytesvariable-precision, inexact15 decimal digits precision
floatvariable-precision, inexact

Numeric types: things to consider

Character Types

CHAR(5)

VARCHAR

VARCHAR(40)

TEXT

Character types: things to consider

Boolean Types

we can provide diff values to PG & tell it to treat as a Boolean:

eg.

why so many possible values?

Times, Dates and Timestamps

DATE

you can provide a string for a date in just about any format

TIME / TIME WITHOUT TIME ZONE

provide a time inside of a string with or withour am/pm designation or a 24-hour format

TIME WITH TIME ZONE

any value put in will be converted into the appropriate UTC value

TIMESTAMP WITH / WITHOUT TIME ZONE

date, time & optional time zone in just about any format in a string

Intervals

store intervals

think of INTERVAL as being a duration of time

use intervals to manipulate dates, times & timestamps

numeric operations on intervals

add / subtract time from dates, times & timestamps

numeric operations between 2 dates, times & timestamps

being able do these at a db level is useful,

SOURCES