Can you help me with the following:
- dump from the database just the con开发者_开发百科tents of a few tables?
- dump just the schema?
mysqldump -u username -p database [table] > file.sql
Use the --no-data option to dump just the schema.
mysqldump --no-data ...
精彩评论