Reputation: 57928
Can you help me with the following:
Upvotes: 0
Views: 233
Reputation: 5720
mysqldump -u username -p database [table] > file.sql
Use the --no-data option to dump just the schema.
mysqldump --no-data ...
Upvotes: 3