gps_time为timestamp类型日期字段 获取当天的数据 WHERE DATE_TRUNC('day', gps_time) = CURRENT_DATE--或WHERE DATE(gps_time) = CUR...
1、获取本月的第一天和最后一天 本月第一天DateTime firstDay = DateUtil.beginOfMonth(new Date()); 本月最后一条Date lastDay = DateUtil.endOfMon...