gpt4 book ai didi

mysql - 在 information_schema 中查找多列索引

转载 作者:行者123 更新时间:2023-11-30 22:15:08 25 4
gpt4 key购买 nike

我有一个表,其索引由表中的三列组成。

有什么方法可以在 information_schema 中找到它,还是它只会显示三个单独的索引?

最佳答案

感谢 Radek Postolowicz 的 steering me朝着正确的方向:

SELECT 
table_name AS `Table`,
index_name AS `Index`,
GROUP_CONCAT(column_name ORDER BY seq_in_index) AS `Columns`
FROM information_schema.statistics
WHERE table_schema = 'db'
AND table_name='tbl'
GROUP BY 1,2;

关于mysql - 在 information_schema 中查找多列索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38577276/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com