javaboy2018

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

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

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-10-29
  • 2021-10-23
  • 2021-12-26
  • 2022-01-04
  • 2021-11-17
  • 2021-11-17
  • 2021-11-02
猜你喜欢
  • 2021-10-13
  • 2021-11-17
  • 2021-11-17
  • 2022-12-23
  • 2021-11-17
  • 2021-11-03
相关资源
相似解决方案