SQL Reference Contents

NAME

revoke - revoke access privileges

SYNOPSIS

revoke <privilege[,privilege,...]>
on <rel1>[,...<reln>]
from [public | group <group> | <username>]

privilege is {ALL | SELECT | INSERT | UPDATE | DELETE | RULE }

DESCRIPTION

revoke allows you to revoke privileges given to all users or certain users or groups.

EXAMPLES

--
--Example of a revoke
--
revoke insert
on mytab
from public

SEE ALSO

grant(l)


Table of Contents