| PostgreSQL 7.4.16 Documentation | ||||
|---|---|---|---|---|
| Prev | Fast Backward | Chapter 32. The Information Schema | Fast Forward | Next |
The view view_column_usage identifies all columns that are used in the query expression of a view (the SELECT statement that defines the view). A column is only included if the current user is the owner of the table that contains the column.
Note: Columns of system tables are not included. This should be fixed sometime.
Table 32-37. view_column_usage Columns
| Name | Data Type | Description |
|---|---|---|
| view_catalog | sql_identifier | Name of the database that contains the view (always the current database) |
| view_schema | sql_identifier | Name of the schema that contains the view |
| view_name | sql_identifier | Name of the view |
| table_catalog | sql_identifier | Name of the database that contains the table that contains the column that is used by the view (always the current database) |
| table_schema | sql_identifier | Name of the schema that contains the table that contains the column that is used by the view |
| table_name | sql_identifier | Name of the table that contains the column that is used by the view |
| column_name | sql_identifier | Name of the column that is used by the view |
No comments could be found for this page.
Please use this form to add your own comments regarding your experience with particular features of PostgreSQL, clarifications of the documentation, or hints for other users. Please note, this is not a support forum, and your IP address will be logged. If you have a question or need help, please see the faq, try a mailing list, or join us on IRC. Note that submissions containing URLs or other keywords commonly found in 'spam' comments may be silently discarded. Please contact the webmaster if you think this is happening to you in error.
In order to submit a comment, you must have a community account.
* denotes required field