原文:https://www.cnblogs.com/BenWong/p/3996061.html
select
table_name, table_type, `engine`
from information_schema.tables
where 1=1
and table_schema='wordpress1'
and table_type='base table';
/* engine:表的存儲引擎,此字段關鍵字,需要添加`符號(就是鍵盤上ESC下面的那個鍵) */
/* table_schema:數據庫名稱 */