mysql show table code example
Example 1: mysql show all tables
show tables;
Example 2: mysql show table structure
DESCRIBE table_name;
Example 3: mysql show table fields
DESCRIBE my_table;
Example 4: show table mysql
USE yourDb;
SHOW TABLES;
Example 5: mysql command show tables
SHOW TABLES;
Example 6: mysql show create table
Copied mysql> SHOW CREATE TABLE t\G
*************************** 1. row ***************************
Table: t
Create Table: CREATE TABLE `t` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`s` char(60) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4