DROP USER

Function

Deletes a user. Doing so will also delete the schema that has the same name as the user.

Precautions

Syntax

DROP USER [ IF EXISTS ] user_name [, ...] [ CASCADE | RESTRICT ];

Parameter Description

Examples

Delete user jim:

1
DROP USER jim CASCADE;

Helpful Links

ALTER USER, CREATE USER