mysql数据库中日期String转成datetime类型作比较

在我们日期作为条件查询时,通常前端传过来的可能是String=‘2019-03-06’,这样的日期格式。那么在传入后台和datetime作比较时可以转换如下格式:


    and t.createTime >= date_format(#{beginTime},'%Y-%c-%d %H:%i:%s')


    and t.createTime <= date_format(#{endTime},'%Y-%c-%d 23:59:59')

你可能感兴趣的:(实用的处理小技巧)