select o.* from user o where 1=1 and userId = 100041 and createTime between '2016-05-04' and '2016-05-06' order by o.createTime desc
始终缺少当天比如六号那天的记录,该怎么办?
It is estimated that the default is 2016-05-06 00:00:00 You use createTime between '2016-05-04 00:00:00' and '2016-05-06 23:59:59' Try
select o.* from user o where 1=1 and userId = 100041 and createTime between '2016-05-04' and '2016-05-07' order by o.createTime desc
It is estimated that the default is 2016-05-06 00:00:00
You use
createTime between '2016-05-04 00:00:00' and '2016-05-06 23:59:59' Try
select o.* from user o where 1=1 and userId = 100041 and createTime between '2016-05-04' and '2016-05-07' order by o.createTime desc