键上的组记录
我的集合结构如下
{"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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否理解你的问题(你的意思是“组”? - 请写下你想要的结果)。
试试这个:
首先 - 按 pid ASC 排序而不是按时间 DESC 排序
I'm not sure I understand your problem (What did you mean "group"? - please write result you want).
Try this:
First - sorting by pid ASC than sorting by time DESC