简体   繁体   English

如何查看 oracle NoSQL 中索引的详细信息?

[英]How to see the details of an index in oracle NoSQL?

How to see the details of an index?如何查看索引的详细信息? I am executing this command to see the indexes for a table我正在执行此命令以查看表的索引

sql-> SHOW INDEXES ON Persons;
indexes
idx_age
idx_areacode
idx_income
idx_state_city_income

but how to see the details, I cannot find a command show indexes detail但是如何查看详细信息,我找不到命令显示索引详细信息

There is no command show indexes detail, Use the command describe没有命令显示索引详细信息,使用命令描述

sql-> describe as json index idx_state_city_income on Persons;
{
"name" : "idx_state_city_income",
"type" : "secondary",
"fields" : ["address.state", "address.city", "income"]
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM