Postgres Enums dissected

Postgres enums (short for "enumerated types") represent one special data type in PostgreSQL that allows you to define a list of possible values for a column. They can be used to enforce data integrity and make it easier to query and sort data.

Postgres Enums dissected

PostgreSQL is a popular open-source object-relational database management system known for its stability, performance and feature-rich SQL implementation.

Postgres enums (short for "enumerated types") represent one special data type in PostgreSQL that allows you to define a list of possible values for a column. They can be used to enforce data integrity and make it easier to query and sort data.

Let's sky dive through them to see what they have to offer and how to best use them.

What are Postgres enums for?

In PostgreSQL, an enum is a data type that consists of a set of symbolic names (enumerators) and their values.

Enums are created using the CREATE TYPE command and can be used in a table column just like any other data type (e.g. integer, varchar).

Enums have some important differences from other data types:

  • Enum values are stored as integers, with the enumerator names serving as aliases for the integer values.
  • Enums have a fixed internal storage size, which is the size needed to store the largest enumerator. This means that enums may take up more space than other data types (e.g. varchar) in some cases.
  • Although Enums were originally fixed – meaning you could not add or remove values once you defined the set of enumerators – Postgres 9.1 released in 2011 enabled the ALTER function, as shown here:

Keep in mind however that when you alter an enum type, all columns that use this specific enum type will also be affected. It is therefore important to update all relevant code and scripts as to avoid any potential backfiring.

How to create and use Postgres enums?

To create an enum type in PostgreSQL, you can use the following syntax:

Here is an example of creating an enum type called "status" with the possible values "active", "inactive", and "deleted":

To use an enum type in a table, you can specify it as the data type for a column:

Enums also have a number of specific functions and operators that you can use when querying data. For example:

  • enum_range() returns an array of all enumerators for an enum type, in the order they were defined.
  • enum_first() returns the first enumerator for an enum type.
  • enum_last() returns the last enumerator for an enum type.

Postgres enums cons

As mentioned earlier, enums are fixed and cannot be altered once created. In other words, they are not flexible.

This can be a disadvantage if you need to add or remove values from an enum type.

Furthermore, if you need to change the values of an enum type (e.g. renaming an enumerator), you will need to create a new enum type, migrate the data to the new type, and then update any references to the old enum type. This can be a time-consuming process.

Best practices for using Postgres enums

It is important to keep your enums organized and maintain them properly to avoid issues down the road. Here are some tips:

  • Choose meaningful names for your enumerators
  • Avoid using abbreviations or acronyms that may not be immediately clear
  • Use enum ranges to define groups of related enumerators (e.g. "pending", "approved", "rejected" for a "status" enum)
  • Consider using a tool or script to automate the process of creating and updating enums

Considerations for using Postgres enums in relation to other data types:

  • Enums may be more suitable for small lists of fixed values (e.g. "male" or "female" for a "gender" column)
  • For more extensive lists or sets of values that may need to be updated or changed more frequently, other data types (e.g. varchar, integer) may be more appropriate.
  • Be aware of the potential for increased storage size when using enums, especially if you have many enumerators with long names.

In summary, enums are a useful data type in PostgreSQL that can help improve data integrity, facilitate querying and sorting, and potentially improve performance.

However, it is important to consider the limitations and potential challenges of using Postgres enums, and to choose the data type that is relevant to your needs.

Interested in learning more about Forest Admin and how we can help your business thrive?

If you feel like chatting with us because you're curious about what we do, please reach out to us, or try it for free right away.

If you want to know more about various Databases, here are a few articles we’ve written on the subject:

  1. PostgreSQL data types
  2. MongoDB vs MySQL
  3. Most popular PostgreSQL GUIs of 2022
  4. Most popular MariaDB GUIs
  5. MongoDB cheat sheet