如果是5.0以上的,以root用户连接,可以看到一个叫information_schema的表,

然后只要:
use information_schema;

select `TABLE_NAME`
from `COLUMNS`
where `COLUMN_NAME`='字段名'
;

就能看见所有的包含此字段的表了

相关文章:

  • 2021-12-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-11
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-15
  • 2022-02-06
  • 2022-01-26
  • 2021-11-03
  • 2021-12-19
相关资源
相似解决方案