Skip to content

Instantly share code, notes, and snippets.

@sankars
Created April 23, 2014 07:01
Show Gist options
  • Select an option

  • Save sankars/11205143 to your computer and use it in GitHub Desktop.

Select an option

Save sankars/11205143 to your computer and use it in GitHub Desktop.
Mysql meta data related queries
-- http://stackoverflow.com/questions/898688/how-to-get-database-structure-in-mysql-via-query
DESCRIBE table;
SHOW TABLES;
SHOW TABLES LIKE '%filter%'
-- print create table query
SHOW CREATE TABLE table;
-- show active sessions
show PROCESSLIST
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment