有什么比查看表属性更详细的命令show tables
?特别是,我需要知道在我继承的数据库中使用了哪些存储引擎。
问问题
1116 次
2 回答
4
您可以直接查询information_schema表。
SELECT `table_name`, `engine`
FROM `information_schema`.`tables`
WHERE `table_schema` = 'your_db'
ORDER BY `table_name` ASC
于 2010-12-21T13:35:17.623 回答
3
show table status like '<tablename>'
show create table <tablename>
describe <tablename>
show indexes from <tablename>
于 2010-12-21T13:36:10.580 回答