Grantrevoke privileges

suggest change
GRANT SELECT, UPDATE
ON Employees
TO User1, User2;

Grant User1 and User2 permission to perform SELECT and UPDATE operations on table Employees.

REVOKE SELECT, UPDATE ON Employees FROM User1, User2;

Revoke from User1 and User2 the permission to perform SELECT and UPDATE operations on table Employees.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


GRANT and REVOKE:
*Grantrevoke privileges

Table Of Contents