Skip to content

Instantly share code, notes, and snippets.

@iezg
Created February 13, 2014 13:04
Show Gist options
  • Save iezg/8974708 to your computer and use it in GitHub Desktop.
Save iezg/8974708 to your computer and use it in GitHub Desktop.
select n.nspname as enum_schema,
t.typname as enum_name,
e.enumlabel as enum_value
from pg_type t
join pg_enum e on t.oid = e.enumtypid
join pg_catalog.pg_namespace n ON n.oid = t.typnamespace
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment