Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我这里已经有一个解决方案:首先,将结构与所有表的数据转储,但不包括某些表;然后,转储那些没有数据的排除表的结构。
例如:
mysqldump -uroot -ppassword database_name --ignore-table=sils.zone > test.sql; mysqldump database_name table_name -d >> test.sql;
但是有没有更好的方法可以只用一个转储语句来解决这个问题?