POSTGRE SQL DataTypes

  1. Character

    • Char

    • Varchar

    • Text

  2. Numeric

    • Integers

      • SMALLINT

      • BIGINT

      • INTEGER

    • Floating Point

      • Decimal

      • Real

      • double precision

    • Serial

      • small serial

      • big serial

      • serial

More about data types can be found in the official documentation here.

Last updated