Created
April 23, 2014 07:01
-
-
Save sankars/11205143 to your computer and use it in GitHub Desktop.
Mysql meta data related queries
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
| -- 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