mysql command line show tables use mysql; code example
Example 1: mysql command show tables
SHOW TABLES;
Example 2: show table mysql
# First, select your database
USE yourDb;
# Then, simply
SHOW TABLES;
SHOW TABLES;
# First, select your database
USE yourDb;
# Then, simply
SHOW TABLES;