DROP-ROLE

Description

The statement user removes a role

  1. DROP ROLE role1;

Deleting a role does not affect the permissions of users who previously belonged to the role. It is only equivalent to decoupling the role from the user. The permissions that the user has obtained from the role will not change

Example

  1. Drop a role1
  1. DROP ROLE role1;

Keywords

  1. DROP, ROLE

Best Practice