Oracle 视图 DICT_COLUMNS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图 DICT_COLUMNS 是一个内置视图,它主要提供用户获取表中列属性的信息。它返回每个表上的每一列的列名,类型,长度,精度和缺省值等信息。
使用方法:
要查询表的列的属性,只需使用下面的SELECT语句:
SELECT table_name, column_name, data_type, data_length, data_precision, data_default
FROM DICT_COLUMNS
WHERE table_name=’table_name’;
将table_name替换为真实表名,即可查询表中各列的信息。
官方英文解释
DICT_COLUMNS
contains descriptions of columns in data dictionary tables and views.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Name of the object that contains the column |
|
|
|
Name of the column |
|
|
|
Text comment on the column |