mysql show table create code example
Example 1: mysql show table structure
DESCRIBE table_name; # To show table structure...
Example 2: mysql show table fields
DESCRIBE my_table;
Example 3: get create table query existing table mysql
SHOW CREATE TABLE tablename
Example 4: mysql command show tables
SHOW TABLES;
Example 5: show table mysql
# First, select your database
USE yourDb;
# Then, simply
SHOW TABLES;
Example 6: mysql show tables in database
show tables;