The DROP ROLE statement is used to removes a role.
DROP ROLE [IF EXISTS] <role_name>;
1. <role_name>:
The name of the role.
The user executing this SQL command must have at least the following privileges:
| Privilege | Object | Notes |
|---|---|---|
| ADMIN_PRIV | USER or ROLE | This operation can only be performed by users or roles with ADMIN_PRIV permissions |
DROP ROLE role1;