SHOW ROLES

On this page Carat arrow pointing down

The SHOW ROLES statement lists the roles for all databases.

Note:

Since the keywords ROLES and USERS can now be used interchangeably in SQL statements for enhanced PostgreSQL compatibility, SHOW ROLES is now an alias for SHOW USERS.

Synopsis

SHOW ROLES

Required privileges

The role must have the SELECT privilege on the system.users and system.role_members tables.

Example

icon/buttons/copy
> SHOW ROLES;
  username |  options   | member_of
-----------+------------+------------
  admin    | CREATEROLE | {}
  carl     | NOLOGIN    | {}
  petee    |            | {}
  root     | CREATEROLE | {admin}
(4 rows)

See also


Yes No
On this page

Yes No