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

MongoDB:インデックスnの「true」値の配列をクエリします

    このコードを使用できます

    db.collectin.find({'weekdays.0' : true})
    

    2日間チェックしたい場合:

    db.collectin.find({$and : 
        [
            {'weekdays.0' : true},
            {'weekdays.1' : true}
        ]
    })
    



    1. MongoDBは制限を$incに設定しました

    2. MongoDB Group by field、count it and sort it desc

    3. Mongoidクエリの否定を取得するにはどうすればよいですか?

    4. mongodbを組み込みデータベースとして使用できますか?