Created
March 22, 2016 08:59
-
-
Save anytizer/36031ab471055f8654e2 to your computer and use it in GitHub Desktop.
Comments in the tables
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
TABLE_NAME, TABLE_COMMENT | |
FROM INFORMATION_SCHEMA.TABLES | |
WHERE | |
TABLE_SCHEMA=DATABASE() | |
AND TABLE_TYPE='BASE TABLE' | |
ORDER BY | |
TABLE_NAME | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment