mysql show contents of all tables code example
Example 1: mysql show all tables
show tables;
Example 2: mysql show table structure
DESCRIBE table_name; # To show table structure...
show tables;
DESCRIBE table_name; # To show table structure...