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

Mongodbとソートサブ配列

    驚くべきことに、はい、mongodbはこれを行うことができます:

    // Sort ascending, by minimum percentage value in the docs' offers array.
    db.collection.find({}).sort({ 'offers.percentage': 1 });
    
    // Sort descending, by maximum percentage value in the docs' offers array.
    db.collection.find({}).sort({ 'offers.percentage': -1 });
    


    1. クラスアイテムをインデックスとして装飾し、ensureIndexを使用するのと同じようにするにはどうすればよいですか?

    2. MongoDBスキーマ検証の概要

    3. mongoDBにネストされたクエリ

    4. MongoDBデフォルトのストレージエンジン「wiredTiger」は、このビルドのmongod + ..no / data/dbフォルダーでは使用できません。