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