mongodb aggregate

mongodb高級特性aggregate,aggregate類似stream的處理方式,數(shù)據(jù)經(jīng)過多級處理,最終輸出處理后數(shù)據(jù)集


1. 統(tǒng)計符合條件的數(shù)組數(shù)據(jù)個數(shù)

db.getCollection('customer').aggregate(

[{"$match":{"serverId":"0001214","$records":{"$gt":0}}}, ?#過濾器 ?,對原始數(shù)據(jù)過濾

{"$unwind":"$records"}, ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?#將records數(shù)據(jù)字段平鋪展開

{"$group":{"_id":0,"count":{"$sum":1}}} ? ? ? ? ? ? ? ? ? ? ? ? ? ? #統(tǒng)數(shù)量

])

2. 統(tǒng)計重復(fù)數(shù)據(jù)

db.getCollection('customer').aggregate([

{"$match":{"serverId":"0001214"}}, ? ? ? ? ? ? ? ? ? ? ?#過濾器

{"$group":{phone:"$phone","count":{"$sum":1}}}, #計算手機數(shù)??

{"$match":{ count : { $gt : 1} }} ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?#過濾手機數(shù)>1的信息

])

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容