show tables columns mysql code example
Example 1: show table mysql
# First, select your database
USE yourDb;
# Then, simply
SHOW TABLES;
Example 2: show tables mysql
Press CTRL+C to copy SHOW [EXTENDED] [FULL] TABLES
[{FROM | IN} db_name]
[LIKE 'pattern' | WHERE expr]