Skip to content

Instantly share code, notes, and snippets.

@gsouf
Last active December 16, 2015 11:29
Show Gist options
  • Save gsouf/5427599 to your computer and use it in GitHub Desktop.
Save gsouf/5427599 to your computer and use it in GitHub Desktop.
List MySQL Columns
SELECT
Table_Catalog
,Table_Schema
,Table_Name
,Column_Name
,Column_Type
FROM INFORMATION_SCHEMA.COLUMNS
WHERE Table_Schema = "nom de la base à lister"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment