mysql 查看所有表的搜索引擎

来源:互联网 发布:阿玛迪斯战记 数据 编辑:程序博客网 时间:2024/06/07 00:31
SELECT table_name, table_type, engine FROM information_schema.tables 
WHERE table_schema = 'database_name' ORDER BY table_name DESC;