SQL REVOKE syntax
REVOKE privilege_name [, privilege_name, ...]
    ON object_name
    FROM { user_name | role_name | PUBLIC }
    [ CASCADE | RESTRICT ];

Let’s break down the various parts of the REVOKE syntax:

Here’s an example usage of the REVOKE statement to revoke the SELECT privilege on a table called “employees” from a user named “john”:

REVOKE SELECT ON employees
    FROM john;

This will remove the SELECT privilege from the user “john” on the “employees” table.

Remember to use caution when revoking privileges, as it can have a significant impact on the user’s access rights within the database.