在一台服务器上,mysql 里有十多个数据库 知道一个表的表名有一个“ note ”的子字符串 如何找到这个表?
1
argos 2017 年 5 月 5 日
写个程序遍历一下,可以参考下面链接中的 fillTableListIfEmpty 方法。
https://github.com/tianshuang/mysql_table_toJavaBean/blob/master/src/main/java/me/tianshuang/GenerateJavaCodeFromMysql.java |
2
lynnworld 2017 年 5 月 5 日
shema 库
|
3
aristotll 2017 年 5 月 5 日
` information_schema.columns` 这张表
|