SHOW USERS

Warning:
Cockroach Labs will stop providing Assistance Support for this version on May 12, 2021. Prior to that date, upgrade to a more recent version to continue receiving support. For more details, see the Release Support Policy.

The SHOW USERS statement lists the users for all databases.

Synopsis

SHOW USERS

Required privileges

The user must have the SELECT privilege on the system table.

Example

icon/buttons/copy
> SHOW USERS;
  user_name
+------------+
  jpointsman
  maxroach
  root
(3 rows)

New in v19.2: Alternatively, within the built-in SQL shell, you can use the \du shell command:

icon/buttons/copy
> \du
  user_name
+------------+
  jpointsman
  maxroach
  root
(3 rows)

See also

YesYes NoNo