mysql dump命令
#hostname主机名 database数据库名 table表名 --where过滤条件 > 输出文件路径
mysqldump -hhostname -uroot -p123456 database table --where=" sensorid=11 and fieldid=0" > /home/xyx/Temp.sql
#hostname主机名 database数据库名 table表名 --where过滤条件 > 输出文件路径
mysqldump -hhostname -uroot -p123456 database table --where=" sensorid=11 and fieldid=0" > /home/xyx/Temp.sql