gpt4 book ai didi

mysql查找表模式

转载 作者:可可西里 更新时间:2023-11-01 07:54:49 26 4
gpt4 key购买 nike

有什么命令比show tables 更详细地查看表属性?特别是,我需要知道在我继承的数据库中使用了哪些存储引擎。

最佳答案

您可以查询 information_schema直接表格。

SELECT `table_name`, `engine`
FROM `information_schema`.`tables`
WHERE `table_schema` = 'your_db'
ORDER BY `table_name` ASC

关于mysql查找表模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4499763/

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