GRANT is a standard SQL command that authorizes a set of users to perform a set of operations on an object.
The basic structure of the REVOKE statement is:
GRANT <permissions-list> ON <object> TO <user-or-role-list>
[WITH GRANT OPTION];
There are various options in standard SQL and most SQL DBMS provide their own extensions to what is specified by the standard.