mysqldump
-u root -p --no-create-db=TRUE --add-drop-table=FALSE --where=
"user=128560"
数据库名
表名 --skip-lock-tables > data.sql
#其中
--where 用来指定查询的条件
#需要注意的是数据库名与表名的位置
mysqldump
-u root -p --no-create-db=TRUE --add-drop-table=FALSE --where=
"user=128560"
数据库名
表名 --skip-lock-tables > data.sql
#其中
--where 用来指定查询的条件
#需要注意的是数据库名与表名的位置