码迷,mamicode.com
首页 > 数据库 > 详细

mysql mybatis springMVC

时间:2018-01-17 18:11:16      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:sql   cat   效果   参数   and   相同   年-月   ring   bsp   

mybatis中时间错误

1、SELECT * from table1 where create_time < ‘2017-12-18 23:59:59‘;

2、SELECT * from table1 where create_time < ‘2017-12-18‘ ‘00:00:00‘; 平时加参数 

<![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   

原文地址:https://www.cnblogs.com/he0xff/p/8303772.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!