how to see structure of table in mysql code example
Example 1: mysql show table structure
DESCRIBE table_name; # To show table structure...
Example 2: see the structure of a table mysql
DESCRIBE table;
DESCRIBE table_name; # To show table structure...
DESCRIBE table;