MySQL 显示全部数据库的全部表的方法
select table_name from information_schema.tables
如果要查看是哪个数据库里的话
select table_schema from information_schema.tables where table_name = 'act_givebonus';
- 上一篇 try-catch-finally 中的 return
- 下一篇 设计模式之策略模式
select table_name from information_schema.tables
如果要查看是哪个数据库里的话
select table_schema from information_schema.tables where table_name = 'act_givebonus';