【mysql技巧】mysql中查询一个字段属于什么表什么数据库

知道一个字段,却不知道它所在的表和数据库可用这个方法:

select table_schema,table_name from information_schema.columns where 
column_name = '字段名'

 

发表评论

Your email address will not be published.