query for show table in mysql code example
Example 1: mysql show table structure
DESCRIBE table_name; # To show table structure...
Example 2: mysql command show tables
SHOW TABLES;
DESCRIBE table_name; # To show table structure...
SHOW TABLES;