2020
12-24
12-24
postgresql数据库根据年月查询出本月的所有数据操作
表里的所有数据:现在我要根据创建时间的年月查询当月所有的数据比如前台传给我一个年月的字段planTimeMonth,值为2018-06那么我们需要查询创建时间为6月份的所有数据sql:java代码中sql拼接:criteria.andCondition("to_char(crt_time,'yyyy-mm')='"+query.get("planTimeMonth").toString()+"'");补充:postgresql根据周和年计算周对应的时间段查询本周星期一的时间方法一:SELECTcurrent_date+cast(-1*(TO_NUMBER(to_char(DA...
继续阅读 >