Skip to content

Instantly share code, notes, and snippets.

@unbracketed
Created September 1, 2011 06:12
Show Gist options
  • Save unbracketed/1185569 to your computer and use it in GitHub Desktop.
Save unbracketed/1185569 to your computer and use it in GitHub Desktop.
mysql find all uses of column name
--http://stackoverflow.com/questions/193780/how-to-find-all-the-tables-in-mysql-with-specific-column-names-in-them
SELECT DISTINCT TABLE_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME IN ('columnA','ColumnB')
AND TABLE_SCHEMA='YourDatabase';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment