describe tables mysql code example
Example 1: describe table mysql
DESCRIBE table_name;
Example 2: mysql show table structure
DESCRIBE table_name; # To show table structure...
Example 3: show table mysql
# First, select your database
USE yourDb;
# Then, simply
SHOW TABLES;