전체 글153 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. java where like 검색 방법. MongoDB Java Like 자바에서 like 검색 할 때. BasicDBObject q = new BasicDBObject(); q.put("name", java.util.regex.Pattern.compile(m)); dbc.find(q); 이렇게 하면 된다. 2015. 11. 12. Linux 기본적인 명령어. 파일 찾기, 문자열 찾기 리눅스 기본적인 명령어. 파일 목록보기 > ll 현 위치 보기 >pwd 현 위치에서 "파일명" 찾기 >find -name "파일명" 현 위치에서 디렉토리 명 찾기 >find -name "디렉토리명" -type d 현 위치에서 문자열 검색 >grep -r "문자열" ./* 2015. 11. 10. 이전 1 ··· 18 19 20 21 22 23 24 ··· 39 다음