mysqldump data only

前端 未结 9 1191
傲寒
傲寒 2020-12-02 03:55

I am looking for the syntax for dumping all data in my mysql database. I don\'t want any table information.

9条回答
  •  执念已碎
    2020-12-02 04:57

    Try to dump to a delimited file.

    mysqldump -u [username] -p -t -T/path/to/directory [database] --fields-enclosed-by=\" --fields-terminated-by=,
    

提交回复
热议问题