バージョンごとのドキュメント一覧

ALTER GROUP

ALTER GROUP <refpurpose>change role name or membership</refpurpose> — ロールの名前またはメンバ資格を変更する

概要

ALTER GROUP role_specification ADD USER user_name [, ... ]
ALTER GROUP role_specification DROP USER user_name [, ... ]


<phrase>where <replaceable class="parameter">role_specification</replaceable> can be:</phrase>

ここでrole_specificationは以下の通りです。

    role_name
  | CURRENT_ROLE
  | CURRENT_USER
  | SESSION_USER

ALTER GROUP group_name RENAME TO new_name

説明

<title>Description</title>

<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つの構文は、ユーザをグループに追加もしくはグループから削除します。 (この場合、任意のロールをユーザ部分として、またはグループ 部分として使用できます。) この種の構文は、実のところ、グループとして指名された ロール内のメンバ資格の付与、取消と同じです。 ですので、GRANTREVOKEを使用する方法を薦めます。 GRANTREVOKEには、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を使用したロール名の変更とまったく同じです。

パラメータ

<title>Parameters</title>
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. 新しいグループ名です。

<title>Examples</title>

Add users to a group: ユーザをグループに追加します。

ALTER GROUP staff ADD USER karl, john;

Remove a user from a group: ユーザをグループから削除します。

ALTER GROUP workers DROP USER beth;

互換性

<title>Compatibility</title>

There is no <command>ALTER GROUP</command> statement in the SQL standard. 標準SQLにはALTER GROUP文はありません。

関連項目

<title>See Also</title> GRANT, REVOKE, ALTER ROLE