DROP USER
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 [ , ... ]
drop_user
Semantics
See DROP ROLE
for more details.
Example
- Drop a user.
yugabyte=# DROP USER John;