SQL/MongoDB10 mongo db 배열의 개수 확인하기 mongo db 배열의 개수 확인하기 db.accommodations.find( { $where: "this.name.length > 1" } ); / 2016. 3. 28. mongo db group count 방법 mongo db group count 방법 db.getCollection('product_crawling_queue').aggregate({ $group: { _id: { site_id: "$site_id" }, count: { $sum: 1 } } }) 2016. 3. 22. MongoDB find array string - 몽고디비 배열 속에 있는 string 찾기 MongoDB find array string 몽고디비 배열 속에 있는 string 찾기 db.getCollection('my_collection').find({'images':{'$elemMatch':{'url':/no_image/}}}) my_collection 테이블에 images라는 array field가 있고, 그 안의 url 이란 string에서 no_image 가 포함된 row를 찾는 쿼리. 2015. 11. 19. Java Mongoldb where not in Java MongoDB where 조건 not in List notIn = new ArrayList(); notIn.add("abce"); notIn.add("abcd"); BasicDBObject query = new BasicDBObject(). append("name", new BasicDBObject("$nin", notIn)); $nin 에 Java List 가 들어가면 된다. 2015. 11. 12. 이전 1 2 3 다음