how to view table in mysql code example
Example 1: mysql show table structure
DESCRIBE table_name;
Example 2: show table mysql
USE yourDb;
SHOW TABLES;
Example 3: mysql command show tables
SHOW TABLES;
Example 4: mysql show tables in database
show tables;
Example 5: show table info mysql
Copied mysql> DESCRIBE pet;
+---------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+---------+-------------+------+-----+---------+-------+
| name | varchar(20) | YES | | NULL | |
| owner | varchar(20) | YES | | NULL | |
| species | varchar(20) | YES | | NULL | |
| sex | char(1) | YES | | NULL | |
| birth | date | YES | | NULL | |
| death | date | YES | | NULL | |
+---------+-------------+------+-----+---------+-------+
Example 6: how to check tables in mysql
mysql -u user -p