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

2025-3-27 / 0 评论 / 3 阅读

查询mysql数据库中hibernate_day3下所有的表名:

解决:

sql语句如下:

select table_name

from information_schema.tables

where table_schema='hibernate_day3' and table_type='base table';