ALL_IND_COLUMNS
- ALL_IND_COLUMNS视图提供当前用户可访问索引中包含的列信息。
列名 | 类型 | 描述 |
index_owner | text | 索引列的所有者 |
schema_name | text | 索引列所属的模式名 |
index_name | Text | 索引名称 |
table_owner | text | 表的所有者 |
table_name | text | 表名 |
column_name | text | 列名 |
column_position | int2 | 列的编号。一般列从1开始向上编号。系统列则拥有(任意)负值编号 |
column_length | int2 | 对于一个固定尺寸的类型,typlen是该类型内部表示的字节数。对于一个变长类型,typlen为负值。-1表示一个“varlena”类型(具有长度字),-2表示一个以空值结尾的C字符串 |
char_length | numeric | 列的数据类型如果为char,表示字节数。否则为0 |
descend | Char(1) | 默认DESC。指示列是按降序(DESC)还是按升序(ASC)排序 |