mysql数据恢复
数据库操作 --查找之前的入库语句
--查看日志文件路径
show variables like 'log_%';
--查看当前日志文件号
show master status;
--查看数据操作日志
show binlog events in 'mysql-bin.000005';
mysql/bin目录操作 恢复数据
--日志写文件
# ./mysqlbinlog /www/server/data/mysql-bin.000005 >/root/sms_record.txt
--从日志中查找表 或者字段
./mysqlbinlog /www/server/data/mysql-bin.000005 |more|grep sms_send_history
--恢复数据操作 起始位置 结束位置
# ./mysqlbinlog /www/server/data/mysql-bin.000007 --start-position 9967062 --stop-position 9967326|mysql -uroot -p dangerous(库名)
https://blog.csdn.net/z694644032/article/details/104463920