Skip to Main Content
Practical PostgreSQL
book

Practical PostgreSQL

by Joshua D. Drake, John C. Worsley
January 2002
Intermediate to advanced content levelIntermediate to advanced
640 pages
16h 39m
English
O'Reilly Media, Inc.
Content preview from Practical PostgreSQL

Alter Group

Modifies the structure of a user group.

Synopsis

ALTER GROUP name ADD USER
            username [, ... ]
ALTER GROUP name DROP USER
            username [, ... ]

Parameters

name

The name of an existing group to alter.

username

The names of existing users you wish to add or remove from the specified group. Multiple names are delimited by commas.

Results

ALTER GROUP

The message returned when an ALTER GROUP modification is successful.

Description

Database superusers can use the ALTER GROUP command to add and remove specified users from a group. As groups can be allocated privileges, adding members to a group grants those privileges by proxy. Users must exist before they can be added to a group. Dropping a user from a group does not drop a user from the system.

Use CREATE GROUP to create a new group and DROP GROUP to remove a group. Use GRANT and REVOKE to manage privileges on a group.

Examples

The following example adds the PostgreSQL database users jessica and william to the sales group:

booktown=# ALTER GROUP sales ADD USER jessica, william;
ALTER

The next example removes the user jessica from the sales group:

booktown=# ALTER GROUP sales DROP USER jessica;
ALTER
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

PostgreSQL: Up and Running, 2nd Edition

PostgreSQL: Up and Running, 2nd Edition

Regina O. Obe, Leo S. Hsu
Learning PostgreSQL 11 - Third Edition

Learning PostgreSQL 11 - Third Edition

Christopher Travers, Andrey Volkov
Learn PostgreSQL

Learn PostgreSQL

Luca Ferrari, Enrico Pirozzi
PostgreSQL 13 Cookbook

PostgreSQL 13 Cookbook

Vallarapu Naga Avinash Kumar

Publisher Resources

ISBN: 9781449309770Supplemental ContentErrata Page