Created
June 29, 2019 01:12
-
-
Save NrI3/e19be35705e2fa778d771b693e9bc858 to your computer and use it in GitHub Desktop.
Mysql information basic
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
| # List of database | |
| db: information_schema | |
| table: schemata | |
| colum: schema_name <- db name | |
| # List of tables | |
| db: information_schema | |
| table: tables | |
| column: table_name <- table name | |
| column: table_schema <- db name | |
| # List of columns | |
| db: information_schema | |
| table: columns | |
| column: column_name | |
| column: table_name | |
| column: table_schema <- Show database name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment