본문 바로가기
SQL/MongoDB

Java Mongoldb where not in

by SSaMKJ 2015. 11. 12.


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 가 들어가면 된다.


'SQL > MongoDB' 카테고리의 다른 글

mongo db 배열의 개수 확인하기  (0) 2016.03.28
mongo db group count 방법  (0) 2016.03.22
MongoDB find array string - 몽고디비 배열 속에 있는 string 찾기  (12) 2015.11.19
java where like 검색 방법.  (0) 2015.11.12
MongoDB 설정.  (13) 2015.11.09

댓글