美文网首页
拼接SQL:年月日——>年月日时分秒

拼接SQL:年月日——>年月日时分秒

作者: 删我丶 | 来源:发表于2021-03-15 17:41 被阅读0次

    代码拼接处理

    String strDateTime =date2String(currentDate,"yyyy-MM-dd") +"00:00:00";
     
    returnstring2Date(strDateTime,"yyyy-MM-dd hh:mm:ss");
    

    mapper.xml处理

    注意时间前有空格,否则会出现报错。

    and create_time BETWEEN CONCAT(#{startTime},' 00:00:00') AND CONCAT(#{endTime},' 23:59:59')
    

    相关文章

      网友评论

          本文标题:拼接SQL:年月日——>年月日时分秒

          本文链接:https://www.haomeiwen.com/subject/cjokcltx.html