在mysql中复制没有数据的数据库结构(带有空表)

copy database structure without data in mysql (with empty tables)(在mysql中复制没有数据的数据库结构(带有空表))
本文介绍了在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 = rootpassword = 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中复制没有数据的数据库结构(带有空表)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

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

相关文档推荐

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代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)