如何查看索引的详细信息?我正在执行此命令以查看表的索引
sql-> SHOW INDEXES ON Persons;
indexes
idx_age
idx_areacode
idx_income
idx_state_city_income但是如何查看详细信息,我找不到一个显示索引详细信息的命令
发布于 2021-05-31 14:04:17
没有显示索引详细信息的命令,请使用命令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"]
}https://stackoverflow.com/questions/67741908
复制相似问题