copy database structure without data in mysql (with empty tables)(在mysql中复制没有数据的数据库结构(带有空表))
问题描述
有没有办法在MySQL中复制没有数据的数据库结构,所以新数据库将与复制时相同,但带有空表.
Is there any way to copy database structure without data in MySQL, so the new database will be the same as it is copied from, but with empty tables.
在得到一些建议后,我尝试了该命令,但出现语法错误,我的 username = root
和 password = nothing
.我猜是默认的.我正在尝试以下命令,
After getting some suggestions I tried the command, but I am getting syntax error, my username = root
and password = nothing
. I guess the default one. I am trying following command,
mysqldump -u root -p -d xyz_db | mysql -u root -p -Dnew_db
我在命令中遗漏或放错了什么?
what I am missing or misplacing in command?
推荐答案
mysqldump -u user -ppass -d olddb | mysql -u user -ppass -D newdb
新数据库必须已经存在.mysqldump 命令中的 -d
标志防止复制数据.
The new database must already exist. The -d
flag in the mysqldump command prevents copying of data.
-p
标志和密码之间没有空格.
There's no space between the flag -p
and the password.
这篇关于在mysql中复制没有数据的数据库结构(带有空表)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在mysql中复制没有数据的数据库结构(带有空表)


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