Oracle 视图 ALL_HIER_COLUMNS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图ALL_HIER_COLUMNS是查询关系型数据库系统中层次化数据的特定列的子视图。该子视图提供了有关特定列所支持的层次化查询和特定列所属层次关系的信息。
使用ALL_HIER_COLUMNS可以帮助用户快速地查找层次关系中的列,并确定其可用的层次查询操作,如 BETWEEN、 START WITH 和 CONNECT BY 。它可以用于检查特定列是否支持层次查询,也可以用于构建层次查询句。
官方英文解释
ALL_HIER_COLUMNS
describes the columns of the hierarchies accessible to the current user.
Related Views
-
DBA_HIER_COLUMNS
describes the columns of all hierarchies in the database. -
USER_HIER_COLUMNS
describes the columns of the hierarchies owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the hierarchy |
|
|
|
Name of the hierarchy |
|
|
|
Name of the column |
|
|
The role the attribute plays in the hierarchy:
|
|
|
|
Datatype of the column |
|
|
|
|
Length of the column (in bytes) |
|
|
Decimal precision for the |
|
|
|
Number of digits to the right of the decimal point in a number |
|
|
|
Indicates whether a column allows NULL values; the value is |
|
|
|
Name of the character set:
|
|
|
|
Declaration length of the character type column |
|
|
|
Indicates that the column uses
|
|
|
|
|
Order of the column, with attributes first in the order specified in the definition of the hierarchy followed by hierarchical attributes |
|
|
The ID of the container where the data originates. Possible values include:
|
See Also:
-
“DBA_HIER_COLUMNS”
-
“USER_HIER_COLUMNS”