How can I use 'Not Like' operator in MongoDB

扶醉桌前 提交于 2019-11-26 08:11:43

问题


I can use the SQL Like Operator using pymongo,

db.test.find({\'c\':{\'$regex\':\'ttt\'}})

But how can I use Not Like Operator?

I tried

db.test.find({\'c\':{\'$not\':{\'$regex\':\'ttt\'}})

but got error:

OperationFailure: $not cannot have a regex


回答1:


From the docs:

The $not operator does not support operations with the $regex operator. Instead use // or in your driver interfaces, use your language’s regular expression capability to create regular expression objects. Consider the following example which uses the pattern match expression //:

db.inventory.find( { item: { $not: /^p.*/ } } )

EDIT (@idbentley):

{$regex: 'ttt'} is generally equivalent to /ttt/ in mongodb, so your query would become db.test.find({c: {$not: /ttt/}}

EDIT2 (@KyungHoon Kim):

In python, this works: 'c':{'$not':re.compile('ttt')}




回答2:


You can do with regex which does not contain a word. Also, you can use $options => i for case of insensitive search.

Doesn't Contain string

db.collection.find({name:{'$regex' : '^((?!string).)*$', '$options' : 'i'}})

Exact case insensitive string

db.collection.find({name:{'$regex' : '^string$', '$options' : 'i'}})

Starts with string

db.collection.find({name:{'$regex' : '^string', '$options' : 'i'}})

Ends with string

db.collection.find({name:{'$regex' : 'string$', '$options' : 'i'}})

Contains string

db.collection.find({name:{'$regex' : 'string', '$options' : 'i'}})

Keep this as a bookmark, and a reference for any other alterations you may need. http://www.cheatography.com/davechild/cheat-sheets/regular-expressions/



来源:https://stackoverflow.com/questions/20175122/how-can-i-use-not-like-operator-in-mongodb

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!