postgresql: Get all values for an enum

Posted . Visible to the public.
SELECT enum_range(NULL::portal) # Returns an array of all possible values
SELECT unnest(enum_range(NULL::portal)) # Unnests the array and returns a row for each value

Whereas portal is the enum type.

Last edit
Andreas Robecke
License
Source code in this card is licensed under the MIT License.
Posted to makandra dev (2014-12-11 12:36)