Export MySQL Database Using Command Line

MySQL database stores a different types of data. These data can be backed up or exported by using the mysqldump command into an SQL file. The SQL files stores the database tables, and structure the data. Exported SQL files can be used to restore the database and data in other database servers. The exporting of … Read more

Show MySQL Databases

Show MySQL Databases

MySQL is an RDMS where data is stored in a related manner by using tables. Multiple databases consist of multiple tables. MySQL databases can be listed in different ways by using a command-line interface or GUI tools. In this tutorial, we examine how to list or show MySQL databases via the command-line interface. Login MySQL … Read more