I have 2-3 different column names that I want to look up in the entire DB and list out all tables which have those columns. Any easy script?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
To get all tables with columns 'columnA' or 'ColumnB' in the database 'YourDatabase'
|
|||||||||||||||||
|
|
|||||||||||
|
|
||||
|
|
|
In version that do not have information_schema (older versions, or some ndb's) you can dump the table structure and search the column manualy.
Now search the column name in And a simple sed script to find the column, just replace COLUMN_NAME with your's:
You can pipe the dump directly in sed but that's trivial. |
||||
|
|
|
More simply done in one line of SQL:
|
||||
|
|
protected by Community♦ Mar 11 at 0:58
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.


