首页 > 代码库 > Mybatis+Mysql一些事儿

Mybatis+Mysql一些事儿

Mybatis使用中,应注意的一些点

1.时间段查询

方法(1):

技术分享>= <=

方法(2):

技术分享
1 a.create_time between
2                     str_to_date(#{startTime,jdbcType=VARCHAR},‘%Y-%m-%d %H:%i:%S‘) and
3                     str_to_date(#{endTime,jdbcType=VARCHAR},‘%Y-%m-%d %H:%i:%S‘) and
between

 

Mybatis+Mysql一些事儿