键上的组记录

发布于 2024-11-02 19:39:09 字数 581 浏览 0 评论 0原文

我的集合结构如下

{"pid" : 1 , id" : 2 ,"auther" : "xyz" , "book" : "pqr" , "time" : 1}

{"pid" : 1 ,"id" :3,“作者”:“abc”,“书”:“stu”,“时间”:2}

{“pid”:1 ,“id”:2,“auther”:“def”,“book”:“vwx”,“时间”:3}

{“pid”:1,“id”:3,“auther”:“hij”, “书”:“yza”,“时间”:4}

{“pid”:2,“id”:3,“auther”: “hij”,“书”:“yza”,“时间”:4}

{“pid”:2,“id”:2,“auther”:“def”,“书”:“vwx”,“时间” : 3}

我想按时间降序排序,具有相同 id 的记录被分组在一起,

意味着包含 2 个 id 的记录被分组在一起,

就像当前可能的查询一样。

db.coll.find({"pid" : 1}).sort({"time" : -1})

mongoDB中是否可以对字段上的记录进行分组

谢谢。

I have collection structure as follows

{"pid" : 1 , id" : 2 ,"auther" : "xyz" , "book" : "pqr" , "time" : 1}

{"pid" : 1 ,"id" : 3 ,"auther" : "abc" , "book" : "stu" , "time" : 2}

{"pid" : 1 ,"id" : 2 ,"auther" : "def" , "book" : "vwx" , "time" : 3}

{"pid" : 1 ,"id" : 3 ,"auther" : "hij" , "book" : "yza" , "time" : 4}

{"pid" : 2 ,"id" : 3 ,"auther" : "hij" , "book" : "yza" , "time" : 4}

{"pid" : 2 ,"id" : 2 ,"auther" : "def" , "book" : "vwx" , "time" : 3}

I want to records sorted on time in descending order with same id records are group together.

means id containing 2 are group together.

currently may query is just like

db.coll.find({"pid" : 1}).sort({"time" : -1})

Is it possible in mongoDB to group record on field

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葬花如无物 2024-11-09 19:39:09

我不确定我是否理解你的问题(你的意思是“组”? - 请写下你想要的结果)。

试试这个:

.find().sort({pid:1, time: -1})

首先 - 按 pid ASC 排序而不是按时间 DESC 排序

I'm not sure I understand your problem (What did you mean "group"? - please write result you want).

Try this:

.find().sort({pid:1, time: -1})

First - sorting by pid ASC than sorting by time DESC

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文