| PostgreSQL 7.4 文檔 | ||||
|---|---|---|---|---|
| Prev | Fast Backward | Chapter 32. 信息模式 | Fast Forward | Next |
視圖 role_table_grants 標識在表或者視圖上賦予的當前用戶所在組的全部權限。 更多信息可以在 table_privileges 找到。
Table 32-21. role_table_grants Columns
| 名字 | 數據類型 | 描述 |
|---|---|---|
| grantor | sql_identifier | 被賦予權限的用戶名 |
| grantee | sql_identifier | 被賦予權限的組的名字 |
| table_catalog | sql_identifier | 包含此表的數據庫的名字(總是當前數據庫) |
| table_schema | sql_identifier | 包含此表的模式的名字 |
| table_name | sql_identifier | 表的名字 |
| privilege_type | character_data | 權限類型: SELECT, DELETE,INSERT, UPDATE,REFERENCES, RULE,或者 TRIGGER |
| is_grantable | character_data | 如果權限可以賦予則為 YES,如果不是,則為 NO |
| with_hierarchy | character_data | 應用于一個 PostgreSQL 裡沒有的特性 |