Skip to content

Instantly share code, notes, and snippets.

@caseyw
Created July 5, 2014 14:40
Show Gist options
  • Select an option

  • Save caseyw/56e3416cdcdc176d120f to your computer and use it in GitHub Desktop.

Select an option

Save caseyw/56e3416cdcdc176d120f to your computer and use it in GitHub Desktop.
Find a column in a database
Find a column in a database
SELECT TABLE_NAME, COLUMN_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE column_name LIKE 'partnerId'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment