REVOKE
Revokes a previously granted privilege on the whole cluster or on a specific object.
Table of Contents
Synopsis
REVOKE { { DQL | DML | DDL [,...] } | ALL [ PRIVILEGES ] }
[ON {SCHEMA | TABLE} identifier [, ...]]
FROM user_name [, ...];
Description
REVOKE
is a management statement to revoke previously granted privileges on a specific object from one or many existing users.
ON {SCHEMA | TABLE}
is optional, if not specified the privilege will be revoked on the CLUSTER
level.
For usage of the REVOKE
statement see Privileges.
Parameters
identifier: | The identifier of the corresponding object. If |
---|---|
user_name: | The name of an existing user. |