sql >> データベース >  >> NoSQL >> MongoDB

日、月、年ごとに異なるISO日付を取得する

    投影後にドキュメントをグループ化し、<を使用する必要があります。 code> $ addToSet アキュムレータ演算子

    db.mycollection.aggregate([
        { "$project": { 
             "year": { "$year": "$date" }, 
             "month": { "$month": "$date" } 
        }},
        { "$group": { 
            "_id": null, 
            "distinctDate": { "$addToSet": { "year": "$year", "month": "$month" }}
        }}
    ])
    


    1. 帆-帆0.10のmongo認証エラー

    2. ノードアプリ間の共有セッション?

    3. 動的オブジェクトを使用したMongoDBC#ドライバーのシリアル化

    4. MongoDB BsonDocumentをC#で有効なJSONに変換します