?
This document uses PHP Chinese website manual Release
視圖 view_column_usage標(biāo)識(shí)所有在一個(gè)視圖的查詢表達(dá)式 (定義視圖的SELECT語句)中使用的字段。 只有在當(dāng)前用戶是包含該字段的表的所有者的時(shí)候才會(huì)列出這個(gè)字段。
Note: 系統(tǒng)表的字段沒有列出。以后應(yīng)該修補(bǔ)這個(gè)問題。
Table 34-49. view_column_usage 字段
名稱 | 數(shù)據(jù)類型 | 描述 |
---|---|---|
view_catalog | sql_identifier | 包含這個(gè)視圖的數(shù)據(jù)庫名稱(總是當(dāng)前數(shù)據(jù)庫) |
view_schema | sql_identifier | 包含這個(gè)視圖的模式名稱 |
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) 包含被這個(gè)視圖使用的字段的表所在的數(shù)據(jù)庫的名字(總是當(dāng)前數(shù)據(jù)庫) |
table_schema | sql_identifier | 包含被這個(gè)視圖使用的字段的表所在的模式名稱 |
table_name | sql_identifier | 包含被這個(gè)視圖使用的字段的表名 |
column_name | sql_identifier | 視圖使用的字段名 |