MongoDB系列4——查询操作符

查询和计划操作符

一、评价查询操作符

方法名描述
$mod取模计算
$regex模糊查询,查询该字段包含某个字符串
$text对有text索引的字段进行模糊查询
$where使用js代码查询数据
1、使用$mod进行模运算查询

c1的数据集如下:

> db.c1.find()
{ "_id" : ObjectId("5f97bb1a0436fe0f6dbb0526"), "age" : 1, "length" : 30 }
{ "_id" : ObjectId("5f97bb200436fe0f6dbb0527"), "age" : 7, "length" : 30 }
{ "_id" : ObjectId("5f97bb260436fe0f6dbb0528"), "age" : 8, "length" : 30 }
{ "_id" : ObjectId("5f97bb860436fe0f6dbb052a"), "age" : 13, "length" : 30 }

取年龄模6结果为1的数据

> db.c1.find({age:{$mod:[6,1]}})
{ "_id" : ObjectId("5f97bb1a0436fe0f6dbb0526"), "age" : 1, "length" : 30 }
{ "_id" : ObjectId("5f97bb200436fe0f6dbb0527"), "age" : 7, "length" : 30 }
{ "_id" : ObjectId("5f97bb860436fe0f6dbb052a"), "age" : 13, "length" : 30 }
2、使用$regex进行模糊查询

c2的数据集如下:

> db.c2.find() 
{ "_id" : ObjectId("5f97bc460436fe0f6dbb052b"), "name" : "小明", "age" : 20 }
{ "_id" : ObjectId("5f97bc4c0436fe0f6dbb052c"), "name" : "小刚", "age" : 20 }
{ "_id" : ObjectId("5f97bc570436fe0f6dbb052d"), "name" : "小明明", "age" : 20 }
{ "_id" : ObjectId("5f97bc5f0436fe0f6dbb052e"), "name" : "大明", "age" : 20 }

查name中包含“明”的数据:

> db.c2.find({name:{"$regex":"明"}}))
{ "_id" : ObjectId("5f97bc460436fe0f6dbb052b"), "name" : "小明", "age" : 20 }
{ "_id" : ObjectId("5f97bc570436fe0f6dbb052d"), "name" : "小明明", "age" : 20 }
{ "_id" : ObjectId("5f97bc5f0436fe0f6dbb052e"), "name" : "大明", "age" : 20 }
3、使用$text对有text索引的字段进行模糊查询

先对c4添加索引:

> db.c4.createIndex( { subject: "text" } )

c4的数据集如下:

> db.c4.find( )
{ "_id" : 1, "subject" : "hello world", "title" : "hello" }
{ "_id" : 2, "subject" : "hello python", "title" : "python" }
{ "_id" : 3, "subject" : "hello java", "title" : "java" }
{ "_id" : 4, "subject" : "hello mongodb", "title" : "mongodb" }
{ "_id" : 5, "subject" : "中文", "title" : "mongodb" }

使用"$text"进行查询

> db.c4.find({"$text":{"$search":"world"}})
{ "_id" : 1, "subject" : "hello world", "title" : "hello" }
4、使用$where进行查询

c5的数据集如下:

> db.c5.find()
{ "_id" : ObjectId("5f98df8e4262ff84adb202d5"), "a" : { "a" : 1 }, "b" : 2, "c" : 3 }
{ "_id" : ObjectId("5f98df9c4262ff84adb202d6"), "a" : { "a" : 1, "b" : "1" }, "b" : 2, "c" : 3 }
{ "_id" : ObjectId("5f98df9f4262ff84adb202d7"), "a" : { "a" : 1, "b" : "2" }, "b" : 2, "c" : 3 }

查询某条内嵌文档中a的值跟b的值相等的数据:

> db.c5.find({$where:"this.a.a==this.a.b"})
{ "_id" : ObjectId("5f98df9c4262ff84adb202d6"), "a" : { "a" : 1, "b" : "1" }, "b" : 2, "c" : 3 }

二、逻辑查询操作符

方法描述
$and并且,两个条件同时成立
$nor两个条件同时不成立
$not不是某个值
$or或者,两个条件只成立一个

c6的数据集如下:

> db.c6.find()
{ "_id" : ObjectId("5f98e4217c6aa7043a43d2f8"), "subject" : "hello world", "title" : "hello" }
{ "_id" : ObjectId("5f98e4297c6aa7043a43d2f9"), "subject" : "hello python", "title" : "hello" }
{ "_id" : ObjectId("5f98e42e7c6aa7043a43d2fa"), "subject" : "hello java", "title" : "hello" }
1、使用$and进行查询

查询subject为hello java,title为hello的文档

> db.c6.find({$and:[{"subject":"hello java"},{"title":"hello"}]})
{ "_id" : ObjectId("5f98e42e7c6aa7043a43d2fa"), "subject" : "hello java", "title" : "hello" }
2、使用$nor进行查询

查询subject不为hello java并且title不为hel的文档

> db.c6.find({$nor:[{"subject":"hello java"},{"title":"hel"}]})
{ "_id" : ObjectId("5f98e4217c6aa7043a43d2f8"), "subject" : "hello world", "title" : "hello" }
{ "_id" : ObjectId("5f98e4297c6aa7043a43d2f9"), "subject" : "hello python", "title" : "hello" }
3、使用$not进行查询

查询b不小于2的值

> db.c5.find({b:{$not:{$lt:2}}})
{ "_id" : ObjectId("5f98df8e4262ff84adb202d5"), "a" : { "a" : 1 }, "b" : 2, "c" : 3 }
{ "_id" : ObjectId("5f98df9c4262ff84adb202d6"), "a" : { "a" : 1, "b" : "1" }, "b" : 2, "c" : 3 }
{ "_id" : ObjectId("5f98df9f4262ff84adb202d7"), "a" : { "a" : 1, "b" : "2" }, "b" : 2, "c" : 3 }
{ "_id" : ObjectId("5f98e0674262ff84adb202d8"), "a" : { "a" : 1, "b" : 1 }, "b" : 2, "c" : 3 }
4、使用$or进行查询

查询b为2或者c为4的值

> db.c5.find({$or:[{b:2},{c:4}]})
{ "_id" : ObjectId("5f98df8e4262ff84adb202d5"), "a" : { "a" : 1 }, "b" : 2, "c" : 3 }
{ "_id" : ObjectId("5f98df9c4262ff84adb202d6"), "a" : { "a" : 1, "b" : "1" }, "b" : 2, "c" : 3 }
{ "_id" : ObjectId("5f98df9f4262ff84adb202d7"), "a" : { "a" : 1, "b" : "2" }, "b" : 2, "c" : 3 }
{ "_id" : ObjectId("5f98e0674262ff84adb202d8"), "a" : { "a" : 1, "b" : 1 }, "b" : 2, "c" : 3 }

三、比较查询操作符

方法描述
$gt大于
$gte大于等于
$lt小于
$lte小于等于
$in在…之中
$nin不在…之中
$ne不等于
$eq等于

c7的数据集如下

> db.c7.find()
{ "_id" : 1, "age" : 20, "length" : 17 }
{ "_id" : 2, "age" : 23, "length" : 17 }
{ "_id" : 3, "age" : 24, "length" : 17 }
{ "_id" : 4, "age" : 19, "length" : 17 }
1、$gt查询年龄大于20的
> db.c7.find({age:{$gt:20}})
{ "_id" : 2, "age" : 23, "length" : 17 }
{ "_id" : 3, "age" : 24, "length" : 17 }
2、$gte查询年龄大于等于20的
> db.c7.find({age:{$gte:20}})
{ "_id" : 1, "age" : 20, "length" : 17 }
{ "_id" : 2, "age" : 23, "length" : 17 }
{ "_id" : 3, "age" : 24, "length" : 17 }
3、$lt查询年龄小于20的
> db.c7.find({age:{$lt:20}})
{ "_id" : 4, "age" : 19, "length" : 17 }
4、$lte查询年龄小于等于20的
> db.c7.find({age:{$lte:20}})
{ "_id" : 1, "age" : 20, "length" : 17 }
{ "_id" : 4, "age" : 19, "length" : 17 }
5、$in查询年龄在20,21,22之中的
> db.c7.find({age:{$in:[20,21,22]}})
{ "_id" : 1, "age" : 20, "length" : 17 }
6、$nin查询年龄不在20,21,22之中的
> db.c7.find({age:{$nin:[20,21,22]}})
{ "_id" : 2, "age" : 23, "length" : 17 }
{ "_id" : 3, "age" : 24, "length" : 17 }
{ "_id" : 4, "age" : 19, "length" : 17 }
7、$ne查询年龄不等于20的
> db.c7.find({age:{$ne:20}})
{ "_id" : 2, "age" : 23, "length" : 17 }
{ "_id" : 3, "age" : 24, "length" : 17 }
{ "_id" : 4, "age" : 19, "length" : 17 }
8、$eq查询年龄等于20的
> db.c7.find({age:{$eq:20}})
{ "_id" : 1, "age" : 20, "length" : 17 }

四、数组查询操作符

方法描述
$all匹配数组中包含某个数组的所有数据
$size匹配数组长度为某个数的数据
$elemMatch查询数组中至少有一个元素满足所有指定条件的文档
$slice对数组返回的值切片

c8的数据集如下:

> db.c8.find()
{ "_id" : ObjectId("5f992b2b7c6aa7043a43d2fb"), "name" : "zs", "score" : [ 10, 80, 90 ] }
{ "_id" : ObjectId("5f992b347c6aa7043a43d2fc"), "name" : "yz", "score" : [ 70, 80, 90 ] }
{ "_id" : ObjectId("5f992b407c6aa7043a43d2fd"), "name" : "lh", "score" : [ 70, 85, 92 ] }
{ "_id" : ObjectId("5f992b497c6aa7043a43d2fe"), "name" : "llx", "score" : [ 79, 85, 92 ] }
{ "_id" : ObjectId("5f992e637c6aa7043a43d2ff"), "name" : "xm", "score" : [ 79, 85 ] }
1、$all查询score包含[70,80]的数据
> db.c8.find({score:{$all:[70,80]}})
{ "_id" : ObjectId("5f992b347c6aa7043a43d2fc"), "name" : "yz", "score" : [ 70, 80, 90 ] }
2、$size查询score长度为3数据
> db.c8.find({score:{$size:2}})
{ "_id" : ObjectId("5f992e637c6aa7043a43d2ff"), "name" : "xm", "score" : [ 79, 85 ] }
3、$elemMatch查询数组中至少有一个元素满足所有指定条件的文档

查询score中至少有一个介于80和60之间

> db.c8.find({score:{$elemMatch:{$lt:80,$gt:60}}})
{ "_id" : ObjectId("5f992b347c6aa7043a43d2fc"), "name" : "yz", "score" : [ 70, 80, 90 ] }
{ "_id" : ObjectId("5f992b407c6aa7043a43d2fd"), "name" : "lh", "score" : [ 70, 85, 92 ] }
{ "_id" : ObjectId("5f992b497c6aa7043a43d2fe"), "name" : "llx", "score" : [ 79, 85, 92 ] }
{ "_id" : ObjectId("5f992e637c6aa7043a43d2ff"), "name" : "xm", "score" : [ 79, 85 ] }
4、查询数组第一个值为70的数据
> db.c8.find({"score.0":70})
{ "_id" : ObjectId("5f992b347c6aa7043a43d2fc"), "name" : "yz", "score" : [ 70, 80, 90 ] }
{ "_id" : ObjectId("5f992b407c6aa7043a43d2fd"), "name" : "lh", "score" : [ 70, 85, 92 ] }

五、元查询操作符

方法名描述
$type数据类型操作符
$exists判断字段是否存在,1为存在,0为不存在
1、$type查询数据为某个类型的数据
类型数字备注
Double1
String2
Object3
Array4
Binary data5
Undefined6已废弃。
Object id7
Boolean8
Date9
Null10
Regular Expression11
JavaScript13
Symbol14
JavaScript (with scope)15
32-bit integer16
Timestamp17
64-bit integer18
Min key255Query with -1
Max key127

c9的数据集为:

> db.c9.find()
{ "_id" : ObjectId("5f993d7b7c6aa7043a43d300"), "name" : "zs", "age" : 20 }
{ "_id" : ObjectId("5f993d847c6aa7043a43d301"), "name" : "ls", "age" : "20" }
{ "_id" : ObjectId("5f993e247c6aa7043a43d302"), "name" : "ww", "age" : 20, "score" : 95 }

查询age为字符串类型的数据

> db.c9.find({age:{"$type":2}})
{ "_id" : ObjectId("5f993d847c6aa7043a43d301"), "name" : "ls", "age" : "20" }
2、$exists查询某个字段存在的数据
> db.c9.find({score:{$exists:1}})
{ "_id" : ObjectId("5f993e247c6aa7043a43d302"), "name" : "ww", "age" : 20, "score" : 95 }
> db.c9.find({score:{$exists:0}})
{ "_id" : ObjectId("5f993d7b7c6aa7043a43d300"), "name" : "zs", "age" : 20 }
{ "_id" : ObjectId("5f993d847c6aa7043a43d301"), "name" : "ls", "age" : "20" }
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值