mongodb 不区分大小写查询
滿天的星座
滿天的星座 2017-05-02 09:21:56
0
2
744

想实现一个mongodb 不区分大小写的查询,比如,查询字段为key,key的值为 Rundown,
现在想实现的查询的方式key能匹配Rundown ,rundown,但不会匹配Rundown1。
请问这个该如何实现了。
ps:我用的是mongdb的java 驱动开发,

滿天的星座
滿天的星座

reply all(2)
仅有的幸福

Use regular expressions, such as:

db.xxx.find( { key: /^rundown$/i } );
Peter_Zhu

{"key" : { "$regex" : "^rundonw1$",$options:"i"}}

The purpose of writing this is to be used in Criteria.regex("^rundonw1$","i").

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template