码迷,mamicode.com
首页 > 数据库 > 详细

mongodb子文档查询

时间:2016-06-23 22:07:45      阅读:356      评论:0      收藏:0      [点我收藏+]

标签:

方法一

--子文档分页
db.apRadioLinkQuality.aggregate(
  {$match: {"logTimeStamp" : {"$gte":1466477620000}}},
  {$unwind: "$staDetailList"},
  {$sort: {"staDetailList.logTime": -1}},
  {$limit: 3},
  {"$group": {"_id": "$_id", "staDetailList": {"$push": "$staDetailList"}}}
)

 

mongodb子文档查询

标签:

原文地址:http://www.cnblogs.com/guochunyi/p/5612114.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!