#mysql查询特定数据库中的所有表名
select table_name
from information_schema.tables
where table_schema='smbms' and table_type='base table';
2023-01-24 11:30:23
#mysql查询特定数据库中的所有表名
select table_name
from information_schema.tables
where table_schema='smbms' and table_type='base table';