如何使用Java驱动程序编写此MongoDB查询:
db.customers.find({'arrayName':{$ exists:true},$ where:'this.arrayName.length> 0'})
干杯, 晏
答案 0 :(得分:1)
要使用Java驱动程序构建查询,可以使用DBObject
替换任何Javascript对象。
DBObject condition = new BasicDBObject();
condition.put("arrayName", new BasicDBObject("$exists", true));
condition.put("$where", "this.arrayName.length>0");
DBCursor result = yourDatabase.getCollection("customers").find(condition);