Oracle 视图 DBA_HIER_COLUMNS 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图DBA_HIER_COLUMNS描述了一个结构化数据库中层次格式列定义,此表提供有关各级层次列的信息,允许查询以验证层次格式列的定义情况。

使用案例:通过查询DBA_HIER_COLUMNS视图,可以获取某张表中层次格式列的相关定义信息:

SELECT owner, table_name, column_name, level_id, parent_value, child_value
FROM dba_Hier_Columns
WHERE owner = ‘me’
AND table_name = ‘table1’;

官方英文解释

DBA_HIER_COLUMNS describes the columns of all hierarchies in the database. Its columns are the same as those in ALL_HIER_COLUMNS.

See Also:

“ALL_HIER_COLUMNS”


数据运维技术 » Oracle 视图 DBA_HIER_COLUMNS 官方解释,作用,如何使用详细说明