大家好,又见面了,我是你们的朋友全栈君。
时间格式为
第一种写法:
select * from test where create_time between '2019-03-05 13:04:07' and '2019-03-08 13:04:07';
第二种写法:
select * from test where create_time >= '2019-03-05 13:04:07' and date <= '2019-03-08 13:04:07';
如果传入的格式是YYYY-MM-DD 的 没有带时分秒,按照上面两种写法会差不全。
解决办法:
一、改变传入格式。改为 YYYY-MM-DD hh:mm:ss 就可以使用上面两种写法
二、你用mysql的函数date_format
select * from test where date_format(create_time,'%Y-%m-%d') between '2019-03-05' and '2019-03-08';
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/148936.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...