Created
September 21, 2018 07:26
-
-
Save imanilchaudhari/16aad43b615aeacc3cd16ca427dca7dd to your computer and use it in GitHub Desktop.
MySQL table schema debugger
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 MYSQL FUNCTIONS | |
======================= | |
show create table <table>; // displays the sql query similar to sql while creating | |
show fields from <table>; // displays the fields of table | |
show indexes from <table>; // displays the indexed of tabe ( foreign, unique, index etc. ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment