mysql shell show tables code example
Example 1: mysql show all tables
show tables;
Example 2: mysql command show tables
SHOW TABLES;
Example 3: how to check tables in mysql
mysql -u user -p
show tables;
SHOW TABLES;
mysql -u user -p