table_privileges
#
The view <literal>table_privileges</literal> identifies all
privileges granted on tables or views to a currently enabled role
or by a currently enabled role. There is one row for each
combination of table, grantor, and grantee.
table_privileges
ビューは、現在有効なロールに対し、または現在有効なロールによって、テーブルもしくはビューに与えられた権限を全て示します。
テーブル、譲与者、被譲与者の組み合わせごとに1行があります。
表35.51 table_privileges
の列
Column Type 列 型 Description 説明 |
---|
Name of the role that granted the privilege 権限を与えたロールの名前です。 |
Name of the role that the privilege was granted to 権限を与えられたロールの名前です。 |
Name of the database that contains the table (always the current database) テーブルを持つデータベースの名前です(常に現在のデータベースです)。 |
Name of the schema that contains the table テーブルを持つスキーマの名前です。 |
Name of the table テーブルの名前です。 |
Type of the privilege: <literal>SELECT</literal>,
<literal>INSERT</literal>, <literal>UPDATE</literal>,
<literal>DELETE</literal>, <literal>TRUNCATE</literal>,
<literal>REFERENCES</literal>, or <literal>TRIGGER</literal>
権限の種類は、
|
<literal>YES</literal> if the privilege is grantable, <literal>NO</literal> if not
この権限を付与可能な場合は |
In the SQL standard, <literal>WITH HIERARCHY OPTION</literal>
is a separate (sub-)privilege allowing certain operations on
table inheritance hierarchies. In PostgreSQL, this is included
in the <literal>SELECT</literal> privilege, so this column
shows <literal>YES</literal> if the privilege
is <literal>SELECT</literal>, else <literal>NO</literal>.
SQL標準では、 |