List all tables containing a given column name

后端 未结 4 1831
执念已碎
执念已碎 2021-02-13 17:40

How do a I list all tables containing a given column name? I\'m using Mysql version 4.1.13-nt-log. I know versions less than 5 dont have an information_scheme DB.

4条回答
  •  执笔经年
    2021-02-13 18:12

    Much more easily

    SELECT DISTINCT TABLE_NAME FROM your_schema.columns WHERE column_name = 'your_column_name';
    

提交回复
热议问题