mongodb子文档查询
Posted 一秒のリフレイン
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongodb子文档查询相关的知识,希望对你有一定的参考价值。
方法一
--子文档分页 db.apRadioLinkQuality.aggregate( {$match: {"logTimeStamp" : {"$gte":1466477620000}}}, {$unwind: "$staDetailList"}, {$sort: {"staDetailList.logTime": -1}}, {$limit: 3}, {"$group": {"_id": "$_id", "staDetailList": {"$push": "$staDetailList"}}} )
以上是关于mongodb子文档查询的主要内容,如果未能解决你的问题,请参考以下文章