mongo 数组元素检索与排序

db.getCollection('test').aggregate([
  {'$match': {'codes.name': 'a'}}, // 检索文档
  {$unwind: "$codes"},             // 拆分数组
  {'$match': {'codes.name': 'a'}}, // 检索数组元素
  {'$sort': {'codes._id': -1}},
  {'$skip': 2},
  {'$limit': 3} 
])

 

posted @ 2017-07-03 17:38  夜未央丿  阅读(1564)  评论(0编辑  收藏  举报