2016-05-06 11 views

答えて

0

はこのために集約パイプラインを使用します。

db.foo.aggregate({_id: "$myDistinctField"}) 
2

まず、接続

mongoClient = new MongoClient("localhost", 27017); 
    chatsDB = mongoClient.getDatabase("productfeeds"); 
    docCollection = chatsDB.getCollection("products"); 

、このクエリを使用し得ます。

ArrayList<String> prodRetailer = docCollection.distinct("merchant_name", String.class) 
           .filter(new Document("merchant_name")) 
           .into(new ArrayList<String>()); 

あなたはこれが役立つかもしれない明確なリスト

関連する問題