show table attributes mysql code example
Example 1: mysql show table structure
DESCRIBE table_name; # To show table structure...
Example 2: mysql show table fields
DESCRIBE my_table;
DESCRIBE table_name; # To show table structure...
DESCRIBE my_table;