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
Parameters
Required privileges
The user must have the on thesystem.users and system.role_members tables.
Examples
Show all users
\du :
Filter users by provisioning source
To find all users provisioned by a specific source, such as an :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 multipleWITH options (comma-separated) and add a LIMIT clause:
Limit results
TheLIMIT clause can also be used without WITH options:

