如何请求MySQL创建数据库?

huangapple go评论59阅读模式
英文:

How can I ask mysql to create the database?

问题

我正在运行以下命令:

mysql --user=root --password=root --port=3306 --host=localhost my_db < my_db_backup.sql

但是我收到错误 ERROR 1049 (42000): Unknown database。如何让 MySQL 在数据库不存在时创建它?我不希望数据库名称出现在 .sql 文件中,我需要能够将备份内容恢复到不同的数据库中。

英文:

I'm running the command :

mysql --user=root --password=root --port=3306 --host=localhost my_db < my_db_backup.sql

But I get the error ERROR 1049 (42000): Unknown database. How can I ask mysql to create the database if it doesn't exist ? I don't want the database name to be in the .sql file, I need to be able to restore the backup's contents in different databases.

答案1

得分: 0

你必须在命令中使用 --one-database 标志以及 --database 标志,这样你就不需要在 .sql 文件中包含数据库名称,这允许你根据需要将备份内容还原到不同的数据库中!

看看这个:

mysql --user=root --password=root --port=3306 --host=localhost --execute="CREATE DATABASE IF NOT EXISTS my_db;" && mysql --user=root --password=root --port=3306 --host=localhost my_db < my_db_backup.sql

英文:

you must use the --one-database flag along with the --database flag in your command, so you don't need to include the database name in the .sql file and this allows you to restore the backup's contents in different databases as needed!

check this out :

mysql --user=root --password=root --port=3306 --host=localhost --execute=&quot;CREATE DATABASE IF NOT EXISTS my_db;&quot; &amp;&amp; mysql --user=root --password=root --port=3306 --host=localhost my_db &lt; my_db_backup.sql

huangapple
  • 本文由 发表于 2023年7月6日 19:49:38
  • 转载请务必保留本文链接:https://go.coder-hub.com/76628529.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定