©
This document uses PHP Chinese website manual Release
视图 view_column_usage标识所有在一个视图的查询表达式 (定义视图的SELECT语句)中使用的字段。 只有在当前用户是包含该字段的表的所有者的时候才会列出这个字段。
Note: 系统表的字段没有列出。以后应该修补这个问题。
Table 34-49. view_column_usage 字段
名称 | 数据类型 | 描述 |
---|---|---|
view_catalog | sql_identifier | 包含这个视图的数据库名称(总是当前数据库) |
view_schema | sql_identifier | 包含这个视图的模式名称 |
view_name | sql_identifier | 视图名称 |
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 | 包含被这个视图使用的字段的表所在的模式名称 |
table_name | sql_identifier | 包含被这个视图使用的字段的表名 |
column_name | sql_identifier | 视图使用的字段名 |