Low Orbit Flux Logo 2 F

How To Show Databases In MySQL

It is really easy to show databases in MySQL. This is one of the most simple operations that you can possibly perform.

First connect using the CLI:



mysql -u username -p

Next, use the following command to actually show you all of the databases:



SHOW DATABASES;

Exit the CLI:



EXIT;

This is probably one of the first things that you should learn to do. Fortunatley it is super easy. If only every other aspect of running a database server could be as incredibly easy as this.

Video Instructions