Synopsis
Use the DROP USER statement to drop a user or role. DROP USER is an alias for DROP ROLE and is used to drop a role.
Syntax
drop_user ::= DROP USER [ IF EXISTS ] role_name [ , ... ]
Semantics
See DROP ROLE for more details.
Example
-
Drop a user.
yugabyte=# DROP USER John;
See also