python3 mysql 时间参数错误

Posted Medivh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 mysql 时间参数错误相关的知识,希望对你有一定的参考价值。

一、环境

    mac OS + python3.6 + pymysql

二、执行

1、语句

select count(user_id)
from chezhubangapppp.yfq_user
where register_dt between 2018-11-01 and 2018-12-01;

 

写成这样直接会报错,说between and之间必须是时间类型

2、修改后

"select count(user_id) from chezhubangapppp.yfq_user where register_dt between str_to_date(‘%s‘, ‘%Y-%m-%d‘) and str_to_date(‘%s‘, ‘%Y-%m-%d‘);" % (‘2018-11-01‘, ‘2018-12-01‘)

报错

ValueError: unsupported format character ‘Y‘ (0x59) at index 98

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

三、结论

修改后的结果

select count(user_id) from chezhubangapppp.yfq_user where register_dt between str_to_date(%s, %%Y-%%m-%%d) and str_to_date(%s, %%Y-%%m-%%d)" % (2018-11-01, 2018-12-01)

 

以上是关于python3 mysql 时间参数错误的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记:python3,代码片段(2017)

连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段

从mysql的片段中加载ListView

scrapy主动退出爬虫的代码片段(python3)

scrapy按顺序启动多个爬虫代码片段(python3)

导航组件的默认空值:参数过多错误