How to convert .sql file to tables in mysql db(如何将 .sql 文件转换为 mysql db 中的表)
问题描述
我有 .sql 文件,我猜是自动生成的.我没有生成这个文件,但无论如何它包括数据库名称和所有带有字段的表.我想将数据库和表添加到我的 mysql localhost 并想知道如何做到这一点.我尝试上传文件,但不断收到有关我的 sql 语法的错误.语法在我看来都是正确的,所以也许 .sql 文件需要更改?
I have .sql files that I'm guessing is auto-generated. I did not generate this file, but anyway it includes the database name and all tables with fields. I'd like to add the db and tables to my mysql localhost and would like to know how to do this. I have tried uploading the file but keep getting errors about my sql syntax. The syntax looks all correct to me so perhaps the .sql file needs to be changed?
推荐答案
来自命令行:
mysql -u root -p databaseName < file.sql
其中 databaseName 是一个已经创建的空数据库,file.sql 是您拥有的 .sql 文件,当您运行命令时,您必须与该文件位于同一文件夹中.这也假设使用 root 作为用户并且它受密码保护.根据您自己的设置进行修改.
Where databaseName is an already created empty database and file.sql is the .sql file you have, you must be in the same folder as the file when you run the command. This also assumes using root as the user and that it is password protected. Modify as needed for your own setup.
此外,您还可以通过翻转尖括号将数据库转储到文件来执行相反的操作.如下图.
Additionally, you can do the reverse by flipping the angled bracket to create a database dump to a file. Like below.
mysql -u root -p databaseName > file.sql
这篇关于如何将 .sql 文件转换为 mysql db 中的表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 .sql 文件转换为 mysql db 中的表


基础教程推荐
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 从字符串 TSQL 中获取数字 2021-01-01