将SQL文件导入mysql

2021-11-20 00:00:00 windows sql import database mysql

我有一个名为 nitm 的数据库.我没有在那里创建任何表.但是我有一个 SQL 文件,其中包含数据库的所有必要数据.该文件是 nitm.sql,它在 C:\drive 中.该文件的大小约为 103 MB.我正在使用 wamp 服务器.

I have a database called nitm. I haven't created any tables there. But I have a SQL file which contains all the necessary data for the database. The file is nitm.sql which is in C:\ drive. This file has size of about 103 MB. I am using wamp server.

我在 MySQL 控制台中使用了以下语法来导入文件:

I have used the following syntax in MySQL console to import the file:

mysql>c:/nitm.sql;

但这没有用.

推荐答案

最后,我解决了这个问题.我将 `nitm.sql` 文件放在 `mysql` 文件夹的 `bin` 文件中,并使用以下语法.

Finally, i solved the problem. I placed the `nitm.sql` file in `bin` file of the `mysql` folder and used the following syntax.

C:\wamp\bin\mysql\mysql5.0.51b\bin>mysql -u root nitm < nitm.sql

这奏效了.

相关文章