在mysq中如何查找整个数据库的索引情况
在mysq中如何查找整个数据库的索引情况(包括索引名称,索引所在库,所在表,用的是哪些字段),谢谢
------解决方案--------------------select * from information_schema.KEY_COLUMN_USAGE;
------解决方案--------------------
select * from INFORMATION_SCHEMA.STATISTICS
------解决方案--------------------select * from infomation_schema_statistics;