mysql查找表模式

时间:2010-12-21 13:30:56

标签: mysql schema storage-engines

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

2 个答案:

答案 0 :(得分:4)

您可以直接查询information_schema表。

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

答案 1 :(得分:3)

show table status like '<tablename>'
show create table <tablename>
describe <tablename>
show indexes from <tablename>