Import SQL file into 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将SQL文件导入mysql


- SQL 临时表问题 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01