时间:2021-07-01 10:21:17 帮助过:7人阅读
<![CDATA[ AND create_time < #{endTime} ‘00:00:00‘]]> 则效果就是 标红 部分,结果集 和 (1)的结果集相同;最后是查询 某日 23:59:59的数据;和我们的想法不一致,是错误数据
3、SELECT * from table1 where create_time < CONCAT(‘2017-12-18‘,‘ 00:00:00‘);
4、SELECT * from table1 where create_time < ‘2017-12-18 00:00:00‘;
5、SELECT * from table1 where create_time < ‘2017-12-18‘;
一般参数如果是 “年-月-日” 的可以直接
endTime为 "年-月-日" 等价于 "年-月-日 00:00:00"
<![CDATA[ AND create_time < #{endTime}]]>
mysql mybatis springMVC
标签:sql cat 效果 参数 and 相同 年-月 ring bsp