将SQL文件导入mysql

Import SQL file into mysql(将SQL文件导入mysql)
本文介绍了将SQL文件导入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

这奏效了.

这篇关于将SQL文件导入mysql的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)