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