Skip to main content
The SHOW USERS lists the users for all databases.
Since the keywords ROLES and USERS can now be used interchangeably in SQL statements for enhanced PostgreSQL compatibility, SHOW USERS is now an alias for .

Synopsis

show_users syntax diagram

Parameters

Required privileges

The user must have the on the system.users and system.role_members tables.

Examples

Show all users

Alternatively, within the built-in SQL shell, you can use the \du :

Filter users by provisioning source

To find all users provisioned by a specific source, such as an :
The SOURCE filter matches against the role option, which is set automatically for users provisioned through , , or authentication.

Filter users by last login time

To find users who have not logged in since a specific date:
Users who have never logged in (NULL estimated_last_login_time) are excluded from LAST LOGIN BEFORE results.

Combine filters with a limit

You can combine multiple WITH options (comma-separated) and add a LIMIT clause:

Limit results

The LIMIT clause can also be used without WITH options:

See also