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