ALTER GROUP <refpurpose>change role name or membership</refpurpose> — ロールの名前またはメンバ資格を変更する
ALTER GROUProle_specification
ADD USERuser_name
[, ... ] ALTER GROUProle_specification
DROP USERuser_name
[, ... ] <phrase>where <replaceable class="parameter">role_specification</replaceable> can be:</phrase> ここでrole_specification
は以下の通りです。role_name
| CURRENT_ROLE | CURRENT_USER | SESSION_USER ALTER GROUPgroup_name
RENAME TOnew_name
<command>ALTER GROUP</command> changes the attributes of a user group.
This is an obsolete command, though still accepted for backwards
compatibility, because groups (and users too) have been superseded by the
more general concept of roles.
ALTER GROUP
はユーザグループの属性を変更します。
後方互換性のために受け付けられていますが、このコマンドは廃止予定です。
グループ(ユーザも同様)は、より一般化されたロールという概念に置き換えられたからです。
The first two variants add users to a group or remove them from a group.
(Any role can play the part of either a <quote>user</quote> or a
<quote>group</quote> for this purpose.) These variants are effectively
equivalent to granting or revoking membership in the role named as the
<quote>group</quote>; so the preferred way to do this is to use
<link linkend="sql-grant"><command>GRANT</command></link> or
<link linkend="sql-revoke"><command>REVOKE</command></link>. Note that
<command>GRANT</command> and <command>REVOKE</command> have additional
options which are not available with this command, such as the ability
to grant and revoke <literal>ADMIN OPTION</literal>, and the ability to
specify the grantor.
最初の2つの構文は、ユーザをグループに追加もしくはグループから削除します。
(この場合、任意のロールを「ユーザ」部分として、または「グループ」 部分として使用できます。)
この種の構文は、実のところ、「グループ」として指名された ロール内のメンバ資格の付与、取消と同じです。
ですので、GRANT
やREVOKE
を使用する方法を薦めます。
GRANT
やREVOKE
には、ADMIN OPTION
を付与したり取り消したりする機能や、権限を付与する者を指定する機能など、このコマンドでは使用できない追加のオプションがあります。
The third variant changes the name of the group. This is exactly
equivalent to renaming the role with
<link linkend="sql-alterrole"><command>ALTER ROLE</command></link>.
3番目の構文はグループの名前を変更します。
これは、ALTER ROLE
を使用したロール名の変更とまったく同じです。
group_name
The name of the group (role) to modify. 変更するグループ(ロール)の名前です。
user_name
Users (roles) that are to be added to or removed from the group.
The users must already exist; <command>ALTER GROUP</command> does not
create or drop users.
グループに追加または削除されるユーザ(ロール)です。
指定するユーザは存在するものでなければいけません。
ALTER GROUP
は、ユーザの作成も削除も行いません。
new_name
The new name of the group. 新しいグループ名です。
Add users to a group: ユーザをグループに追加します。
ALTER GROUP staff ADD USER karl, john;
Remove a user from a group: ユーザをグループから削除します。
ALTER GROUP workers DROP USER beth;
There is no <command>ALTER GROUP</command> statement in the SQL
standard.
標準SQLにはALTER GROUP
文はありません。