The ALTER GROUP statement adds or removes a user account from a group.
Syntax
ALTER GROUPgroup-name
<ADD USERuser-name [ , user-name ]...
| DROP USERuser-name [ , user-name ]...>
Remarks
Only the Master user can execute this statement.
This statement must be used with one of the two available keywords.
A user account cannot be added to a group if the group is not already created in the database. To create users and add them to groups simultaneously, see GRANT.
Dropping a user account from a group does not remove the group from the database.
User accounts cannot belong to multiple groups simultaneously. A user account cannot be added to a group if it is currently a member of another group. Such a user account must first be dropped from its current group and then added to another group.
A user name must be enclosed in double quotes if it contains spaces or other nonalphanumeric characters.