Changes a role name or membership.

Synopsis

  1. ALTER GROUP <groupname> ADD USER <username> [, ... ]
  2. ALTER GROUP <groupname> DROP USER <username> [, ... ]
  3. ALTER GROUP <groupname> RENAME TO <newname>

Description

ALTER GROUP changes the attributes of a user group. This is an obsolete command, though still accepted for backwards compatibility, because users and groups are superseded by the more general concept of roles. See ALTER ROLE for more information.

The first two variants add users to a group or remove them from a group. Any role can play the part of groupname or username. The preferred method for accomplishing these tasks is to use GRANT and REVOKE.

Parameters

groupname

The name of the group (role) to modify.

username

Users (roles) that are to be added to or removed from the group. The users (roles) must already exist.

newname

The new name of the group (role).

Examples

To add users to a group:

  1. ALTER GROUP staff ADD USER karl, john;

To remove a user from a group:

  1. ALTER GROUP workers DROP USER beth;

Compatibility

There is no ALTER GROUP statement in the SQL standard.

See Also

ALTER ROLE, GRANT, REVOKE

Parent topic: SQL Commands