mysql command to show structure of table code example
Example 1: mysql show table structure
DESCRIBE table_name; # To show table structure...
Example 2: show table structure mysql console
use DATABASE_NAME;
describe TABLE_NAME;
DESCRIBE table_name; # To show table structure...
use DATABASE_NAME;
describe TABLE_NAME;