Low Orbit Flux Logo 2 F

How To Show Tables In MySQL

It is super easy to show tables in MySQL. This is another example of one of the most simple operations that you can perform in MySQL.

Connect using the CLI like this:



mysql -u username -p

Select a database like this:



USE database_name;

Show the actual tables with this one simple command:



SHOW TABLES;

Exit the CLI:



EXIT;

Thats it. If every aspect of my life or job could be as easy as this I would probably need more chanenges to keep myself busy.

Video Instructions