Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
SHOW ENUMS
name
name.name
.
> CREATE TYPE weekday AS ENUM ('monday', 'tuesday', 'wednesday', 'thursday', 'friday');
> CREATE TYPE weekend AS ENUM ('sunday', 'saturday');
> SHOW ENUMS;
schema | name | values | owner ---------+---------+--------------------------------------------+-------- public | weekday | {monday,tuesday,wednesday,thursday,friday} | demo public | weekend | {sunday,saturday} | demo (2 rows)
> SHOW ENUMS FROM movr.public;