mongoDB:$dateToString 格式以 15 分钟间隔显示时间

编程入门 行业动态 更新时间:2024-10-17 11:22:07
本文介绍了mongoDB:$dateToString 格式以 15 分钟间隔显示时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

I have a example here, mongoplayground/p/fqxBy6NAZXL

As you will see final result has "dateHour" and "minuteBucket" fields. I am dividing time by 15.0 minutes so "minuteBucket" value will always be one of 0, 1, 2, 3

"dateHour" is not showing minutes right now.

Expected :

I need to remove "minuteBucket" field but still divide time by 15 minutes for this aggregation and show "dateHour" with HH:MM where it always round up by 15 minutes. example it should look like in this format based on its time.

"2020-03-19T18:00:00", "2020-03-19T18:15:00","2020-03-19T18:30:00","2020-03-19T18:45:00"

解决方案

You can use $dateFromString to parse dateHour and then add _id.minutebucket multiplied by 900000 (15 minutes * 60 seconds * 1000 miliseconds):

{ dateHour: { $let: { vars: { parsedDate: { $dateFromString: { dateString: "$_id.dateHour", format: "%Y-%m-%dT%H" } } }, in: { $toString: [ { $add: [ "$$parsedDate", { $multiply: [ "$_id.minuteBucket", 900000 ] } ] } ] } } } }

Mongo Playground

更多推荐

mongoDB:$dateToString 格式以 15 分钟间隔显示时间

本文发布于:2023-06-06 01:37:12,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/531167.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:间隔   格式   时间   mongoDB   dateToString

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!