Mongodb 如何将时间戳转换为年月日日期
时间:2024-03-09 11:51作者:下载吧人气:30
Mongodb将时间戳转换为年月日日期
使用dateToString 方法进行转换 并且通过format指定转换日期格式
Integer userId=aaa;
GroupOperation groupOperation = Aggregation.group(“day”).sum(“money”).as(“todayIncome”).count().as(“todayPayCount”);
Aggregation aggregation = Aggregation.newAggregation(
Aggregation.match(Criteria.where(“userId”).is(userId)),
project(“userId”,”money”).andExpression(“{$dateToString: {date: { $add: {‘$createTime’, [0]} }, format: ‘%Y%m%d’}}”, new Date(28800000)).as(“day”),
groupOperation,
sort(Sort.Direction.ASC, “_id”)
);
标签Mongodb,nbsp,如何,时间,转换,年月日,日期
网友评论