Skip to content

Instantly share code, notes, and snippets.

@NrI3
Created June 29, 2019 01:12
Show Gist options
  • Select an option

  • Save NrI3/e19be35705e2fa778d771b693e9bc858 to your computer and use it in GitHub Desktop.

Select an option

Save NrI3/e19be35705e2fa778d771b693e9bc858 to your computer and use it in GitHub Desktop.
Mysql information basic
# 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