On this page
Warning:
CockroachDB v20.1 is no longer supported as of November 12, 2021. For more details, refer to the Release Support Policy.
The SHOW USERS
statement lists the users for all databases.
Note:
New in v20.1: Since the keywords ROLES
and USERS
can now be used interchangeably in SQL statements for enhanced Postgres compatibility, SHOW USERS
is now an alias for SHOW ROLES
.
Synopsis
Required privileges
The user must have the SELECT
privilege on the system.users
and system.role_members
tables.
Example
> SHOW USERS;
username | options | member_of
-----------+------------+------------
admin | CREATEROLE | {}
carl | NOLOGIN | {}
petee | | {}
root | CREATEROLE | {admin}
(4 rows)
Alternatively, within the built-in SQL shell, you can use the \du
shell command:
> \du
username | options | member_of
-----------+------------+------------
admin | CREATEROLE | {}
carl | NOLOGIN | {}
petee | | {}
root | CREATEROLE | {admin}
(4 rows)