mongodb pipe 操作符总结

2017-03-30  本文已影响0人  许道龙
 db.books.aggregate( [
                      { $group : { _id : "$author", books: { $push: "$title" } } },
                      { $out : "authors" }
                  ] )
 db.article.aggregate(
    { $skip : 5 }
);
 db.article.aggregate(
    { $limit : 5 }
);
 db.users.aggregate(
   [
     { $sort : { age : -1, posts: 1 } }
   ]
)
 db.scores.aggregate(
  [
    {
      $match: {
        score: {
          $gt: 80
        }
      }
    },
    {
      $count: "passing_scores"
    }
  ]
)
上一篇下一篇

猜你喜欢

热点阅读