Deleting a Role
Function
This statement is used to delete a role in the current database or a specified database.
Syntax
1 | DROP ROLE [db_name].role_name;
|
Keyword
None
Precautions
- The role_name to be deleted must exist in the current database or the specified database. Otherwise, an error will be reported.
- If db_name is not specified, the role is deleted in the current database.
Example
1 | DROP ROLE role1;
|
Last Article: Creating a Role
Next Article: Binding a Role
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.