如何在MongoDB中使用“不喜欢”运算符?
为此,请在MongoDB中使用$not运算符。为了理解这个概念,让我们用文档创建一个集合。使用文档创建集合的查询如下-
> db.notLikeOperatorDemo.insertOne({"StudentName":"John Doe"});
{
"acknowledged" : true,
"insertedId" : ObjectId("5c8a29c393b406bd3df60dfc")
}
> db.notLikeOperatorDemo.insertOne({"StudentName":"John Smith"});
{
"acknowledged" : true,
"insertedId" : ObjectId("5c8a29cc93b406bd3df60dfd")
}
> db.notLikeOperatorDemo.insertOne({"StudentName":"John Taylor"});
{
"acknowledged" : true,
"insertedId" : ObjectId("5c8a29df93b406bd3df60dfe")
}
> db.notLikeOperatorDemo.insertOne({"StudentName":"Carol Taylor"});
{
"acknowledged" : true,
"insertedId" : ObjectId("5c8a2a1693b406bd3df60dff")
}
> db.notLikeOperatorDemo.insertOne({"StudentName":"David Miller"});
{
"acknowledged" : true,
"insertedId" : ObjectId("5c8a2a2693b406bd3df60e00")
}在find()method的帮助下显示集合中的所有文档。查询如下-
> db.notLikeOperatorDemo.find().pretty();
以下是输出-
{ "_id" : ObjectId("5c8a29c393b406bd3df60dfc"), "StudentName" : "John Doe" }
{
"_id" : ObjectId("5c8a29cc93b406bd3df60dfd"),
"StudentName" : "John Smith"
}
{
"_id" : ObjectId("5c8a29df93b406bd3df60dfe"),
"StudentName" : "John Taylor"
}
{
"_id" : ObjectId("5c8a2a1693b406bd3df60dff"),
"StudentName" : "Carol Taylor"
}
{
"_id" : ObjectId("5c8a2a2693b406bd3df60e00"),
"StudentName" : "David Miller"
}这是在MongoDB中使用NOTLIKE运算符的查询-
> db.notLikeOperatorDemo.find( { StudentName: { $not: /^John Taylor.*/ } } );以下是输出-
{ "_id" : ObjectId("5c8a29c393b406bd3df60dfc"), "StudentName" : "John Doe" }
{ "_id" : ObjectId("5c8a29cc93b406bd3df60dfd"), "StudentName" : "John Smith" }
{ "_id" : ObjectId("5c8a2a1693b406bd3df60dff"), "StudentName" : "Carol Taylor" }
{ "_id" : ObjectId("5c8a2a2693b406bd3df60e00"), "StudentName" : "David Miller" }
You can use the following query also:
> db.notLikeOperatorDemo.find({StudentName: {$not: /John Taylor/}});
The following is the output:
{ "_id" : ObjectId("5c8a29c393b406bd3df60dfc"), "StudentName" : "John Doe" }
{ "_id" : ObjectId("5c8a29cc93b406bd3df60dfd"), "StudentName" : "John Smith" }
{ "_id" : ObjectId("5c8a2a1693b406bd3df60dff"), "StudentName" : "Carol Taylor" }
{ "_id" : ObjectId("5c8a2a2693b406bd3df60e00"), "StudentName" : "David Miller" }热门推荐
10 分别发的祝福语简短
11 大外甥高考祝福语简短
12 小学毕业校长简短祝福语
13 搞工程发财祝福语简短
14 冬季祝福语男生文案简短
15 同事生子问候祝福语简短
16 退休文案寄语简短祝福语
17 送给自己的祝福语简短
18 简短祝福语毛笔字