Created
April 2, 2020 11:41
-
-
Save iamshanto/18b1df4e9fd713669b42e3125c70f375 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
tb.COLUMN_NAME AS 'Field Name', | |
tb.COLUMN_TYPE AS 'Data Type', | |
tb.IS_NULLABLE AS 'Allow Empty', | |
tb.EXTRA AS 'PK', | |
tb.COLUMN_COMMENT AS 'Field Description' | |
FROM | |
`INFORMATION_SCHEMA`.`COLUMNS` as tb | |
WHERE | |
TABLE_NAME = '__TABLE_NAME__' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment