Google News
logo
MySQL - Interview Questions
How to import a database in MySQL?
Importing database in MySQL is a process of moving data from one place to another place. It is a very useful method for backing up essential data or transferring our data between different locations. For example, we have a contact book database, which is essential to keep it in a secure place. So we need to export it in a safe place, and whenever it lost from the original location, we can restore it using import options.
 
In MySQL, we can import a database in mainly two ways :
 
* Command Line Tool
* MySQL Workbench
Advertisement