til

#TIL : Mysql dumping only table structure

I learned on 2017-05-17 about mysql

Adding -D to dump only data structure

Example :

$ mysqldump -h 127.0.0.1 -u root -p"something" -D database1 > db.sql

Enjoyed this?

Leave a kudo — it means a lot.

0