DROP USER

Function

Deleting a user will also delete the schema having the same name as the user.

Precautions

Syntax

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

Parameter Description

Example

Delete user jim.

1
DROP USER jim CASCADE;

Links

ALTER USER, CREATE USER