This statement is used to unbind the user with the role.
1 | REVOKE ([db_name].role_name,...) FROM (user_name,...); |
None
role_name and user_name must exist and user_name has been bound to role_name.
To unbind the user_name1 from role1, run the following statement:
1 | REVOKE role1 FROM user_name1; |