本文介绍了从MySQL中的信息模式获取索引方向的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我创建了降序索引

CREATE INDEX `MyTable.MyIndex`
USING BTREE ON `MyTable` (`DateFrom` DESC, `DateTo` DESC);

我想从information_schema获取有关它的信息.

I want to get information about it from information_schema.

根据文档 information_schema.statistics表可以工作.但是我找不到有关索引的列顺序的任何信息(即ASCDESC).

According to documentation information_schema.statistics table does the job.However I can't find any information about column order for indexes (i.e. ASC or DESC).

我如何找到该信息?

推荐答案

表统计信息在文档中写在哪里?

Where is it written in the documentation that the table statistics does the job ?

此外,我在创建索引文档中找到了这:

这篇关于从MySQL中的信息模式获取索引方向的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 05:40