#mysql查询特定数据库中的所有表名

#mysql查询特定数据库中的所有表名
select table_name
from information_schema.tables
where table_schema='smbms' and table_type='base table';

原文地址:https://www.cnblogs.com/javaboy2018/p/11329614.html