mysql -h localhost -P5100 -ua -pb -e 'use xxx; SELECT * FROM `order_info` WHERE pay_time >= 1472659200 and pay_time < 1475251200 limit 10’ > order_info_sept
mysqldump -h localhost -P5100 -ua -pb xxx_database xxx_table --where="pay_time >= 1472659200 and pay_time < 1475251200" --single-transaction > order_info_sept
加上 --single-transaction 就不会锁表了
Mysql 命令 和 mysqldump的一些操作