没有数据的 MySql 导出模式

2021-11-20 00:00:00 sql mysql

我正在使用带有 Java 程序的 MySql 数据库,现在我想将该程序提供给其他人.

I'm using a MySql database with a Java program, now I want to give the program to somebody else.

如何导出MySql数据库结构,里面没有数据,只有结构?

How to export the MySql database structure without the data in it, just the structure?

推荐答案

你可以用 --no-data 选项和 mysqldump 命令来做

You can do with the --no-data option with mysqldump command

mysqldump -h yourhostnameorIP -u root -p --no-data dbname > schema.sql

相关文章