MongoDB學習筆記

一、查詢條件
支持<, <=, >, >=查詢,需用符號替代分別爲$lt,$lte,$gt,$gte
小於
{"id":{$lt : 5}}
排序,1升序,-1爲降序
{"id":-1}java

 

二、java 增刪改查MongoDBpost

https://blog.csdn.net/yanping_ren/article/details/45914651.net

 

三、多字段分組排序blog

db.post_like.aggregate([{$group:{_id:{aid:'$aid',paid:'$paid'},count: { $sum: 1 }}}, {$sort:{"count":-1}}, {$limit:100}],{allowDiskUse:true})排序

備註:當數據量較大時,選擇磁盤存儲it

相關文章
相關標籤/搜索