Export all table except ...
Exports all table from
dbname
except the two table:
table1
and
table2
mysqldump -u root -p --ignore-table=dbname.table1 --ignore-table=dbname.table2 dbname > dbname.sql
by Valeri Tandilashvili
3 years ago
MySQL
Linux
0
Pro tip: use ```triple backticks around text``` to write in code fences