Last active
March 31, 2020 21:36
-
-
Save koobitor/7d4578e9f1dec3d0740fa622c1a37a83 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
-- DB Schema | |
SELECT COLUMN_NAME, COLUMN_TYPE, IS_NULLABLE, EXTRA, COLUMN_DEFAULT, COLUMN_COMMENT, COLUMN_KEY from information_schema.columns | |
WHERE table_schema = 'database_name' | |
AND table_name = 'table_name'; | |
-- Example Data | |
SELECT * FROM table_name LIMIT 10; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment