摘要:
1 查看是否开启 show variables like 'log_bin%'; 2 开启方法 在安装路径下找到【my.ini】的配置文件,在【[mysqld]】标识下添加如下内容server-id=1log-bin=mysql-bin 保存后重启mysql 3 查看增量日志列表 show bina 阅读全文
摘要:
下面就Python中的注释做一些演示:单号注释,多行注释,文档注释 1. 单行注释 # This is a single line comment in Python 使用# 号,后面的字符串是单行注释内容 2.多行注释 使用三单引号或三双引号 ''' This type of comment sp 阅读全文