MongoDB 正则查询
扫码查看 原文链接 : https://blog.lmlphp.com/tutorial/4/mongodb/item/5/MongoDB_regular_express_query_commands 来自 : LMLPHP后院
MongoDB 正则表达式查询,示例:
> db.collection_name.find({"name":/lmlphp.*/i})
元操作符 $not 取反,示例:
> db.collection_name.find({"name":{$not:/lmlphp.*/i}})
$not 取模:
> db.collection_name.find({"id":{$not:{$mod:[10,1]}}})