1、Q:插入mysql数据内包含 \ 转义符或者其他特殊转义字符
A:使用方法:mysql模块的escape_string方法进行转义
row_html="\img\test.jpg"
row_html=pymysql.escape_string(row_html)
row_html=MySQLdb.escape_string(row_html)
2、Q:查询数据库,某个字段为NULL的写法
A:select * from 表名 where 字段名 is NULL ,注意不能写为=NULL,这样无法查询到数据