Python中调用Mysql执行SQL时报错:ValueError: unsupported format character ‘Y‘ (0x59) at index 1248,怎么解决?

执行查询语句时报错:

错误提示:ValueError: unsupported format character 'Y' (0x59) at index 1248

产生原因:

       因为python执行的sql中存在类似DATE_FORMAT(MAX(CREATE_TIME), ‘%Y-%m-%d’) 的写法,其中%Y与python的参数%s冲突!

解决方法:

       将DATE_FORMAT(MAX(CREATE_TIME), ‘%Y-%m-%d’) 修改为DATE_FORMAT(MAX(CREATE_TIME), ‘%%Y-%%m-%%d’) 即可!亲测有效,记录积累一下

 

感谢您的阅读,如有错误或不足之处,敬请批评指正!

 

 

你可能感兴趣的:(Python,MySQL,python,mysql)