This tutorial assumes that you have access to the MySQL command prompt.
Show
The SHOW command is used to display details about databases, tables and indexes.
Examples of the SHOW command
mysql> SHOW databases;
+--------+
|Database|
+--------+
|test |
+--------+
1 row in set (0.01 sec)
mysql> SHOW tables;
+--------------+
|Tables_in_test|
+--------------+
|people |
+--------------+
1 row in set (0.01 sec)
mysql>
Describe
The DESCRIBE command is used to display information about a table. It outputs attribute names, their data types, keys and other information about the attributes.