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