binlog日志中没有insert的记录

现象:

日志中有create、drop的记录,但是没有insert的记录。


解决方法:

登录mysql后,设置binlog的记录格式:

set binlog_format=statement;

然后,最好在my.ini中添加:

binlog_format=statement

你可能感兴趣的:(MySQL)