MongoDB语法实践
admin
2023-01-19 02:20:03
0

####简单操作过程

基本查询:

构造查询数据:

db.test.insert({name:"stephen",age:35,genda:"male",email:"stephen@hotmail.com"})

db.test.insert({name:"Stephen",age:35,genda:"male",email:"stephen@hotmail.com"})

db.test.insert({name:"stephen1",age:35,genda:"male",email:"stephen@hotmail.com"})

db.test.insert({name:"stephen",age:36,genda:"male",email:"stephen@hotmail.com"})

db.test.insert({name:"stephen",age:37,genda:"male",email:"stephen@hotmail.com"})

--多条件查询,等同于SQL语句的where name = "stephen" and age = 35

db.test.find({name:"stephen",age:35})

{ "_id" : ObjectId("59f1ae4388f3edba94091894"), "name" : "stephen", "age" : 35, "genda" : "male", "email" : "stephen@hotmail.com" }

   --返回指定的文档键值对,只返回name和age键值对

    db.test.find({},{name:1,age:1})

    { "_id" : ObjectId("59f1ae4388f3edba94091894"), "name" : "stephen", "age" : 35 }

    { "_id" : ObjectId("59f1ae8588f3edba94091895"), "name" : "stephen", "age" : 36 }

    { "_id" : ObjectId("59f1ae8a88f3edba94091896"), "name" : "stephen", "age" : 37 }

2、查询条件

    MongoDB提供了一组比较操作符:$lt/$lte/$gt/$gte/$ne,依次等价于/>=/!=

--返回符合条件age >= 18 && age <= 40的文档

db.test.find({age:{$gte:35,$lte:36}})

    { "_id" : ObjectId("59f1ae4388f3edba94091894"), "name" : "stephen", "age" : 35, "genda" : "male", "email" : "stephen@hotmail.com" }

    { "_id" : ObjectId("59f1ae8588f3edba94091895"), "name" : "stephen", "age" : 36, "genda" : "male", "email" : "stephen@hotmail.com" }

--返回指定的键值对条件age >= 18 && age <= 40的文档

db.test.find({age:{$gte:35,$lte:36}},{name:1,age:1})

{ "_id" : ObjectId("59f1ae4388f3edba94091894"), "name" : "stephen", "age" : 35 }

    { "_id" : ObjectId("59f1ae8588f3edba94091895"), "name" : "stephen", "age" : 36 }

--返回条件符合name != "stephen1"

db.test.find({name:{$ne:"stephen"}})

    { "_id" : ObjectId("59f1b20588f3edba94091898"), "name" : "stephen1", "age" : 35, "genda" : "male", "email" : "stephen@hotmail.com" }

    --$in等同于SQL中的in,下面的示例等同于SQL中的in ("stephen","stephen1")

db.test.find({name:{$in:["stephen","stephen2"]}})

--下面的示例等同于name = "stephen1" or age = 35

db.test.find({$or:[{name:"stephen1"},{age:36}]})

{ "_id" : ObjectId("59f1ae8588f3edba94091895"), "name" : "stephen", "age" : 36, "genda" : "male", "email" : "stephen@hotmail.com" }

    { "_id" : ObjectId("59f1b20588f3edba94091898"), "name" : "stephen1", "age" : 35, "genda" : "male", "email" : "stephen@hotmail.com" }

--下面的示例演示了如何混合使用$or和$in

db.test.find({$or:[{name:{$in:["stephen1","setphen12"]}},{age:36}]})

3、NULL数据类型的查询

    --在进行值为null数据的查询时,所有值为null,以及不包括指定键的文档均会被检索出来

    db.test.find({"x":null})

db.test.find({a:null})

    { "_id" : ObjectId("59f1ae4388f3edba94091894"), "name" : "stephen", "age" : 35, "genda" : "male", "email" : "stephen@hotmail.com" }

    { "_id" : ObjectId("59f1ae8588f3edba94091895"), "name" : "stephen", "age" : 36, "genda" : "male", "email" : "stephen@hotmail.com" }

    { "_id" : ObjectId("59f1ae8a88f3edba94091896"), "name" : "stephen", "age" : 37, "genda" : "male", "email" : "stephen@hotmail.com" }

    { "_id" : ObjectId("59f1b1fd88f3edba94091897"), "name" : "stephen", "age" : 35, "genda" : "male", "email" : "stephen@hotmail.com" }

    { "_id" : ObjectId("59f1b20588f3edba94091898"), "name" : "stephen1", "age" : 35, "genda" : "male", "email" : "stephen@hotmail.com" }

--再有就是通过$exists判断指定键是否存在

db.test.find({x:{$in:[null],$exists:true}})

    { "_id" : ObjectId("59f1c40b88f3edba94091899"), "x" : null }

4、正则查询

    db.test.find()

--正则语法

db.test.find({name:/1/})

    { "_id" : ObjectId("59f1b20588f3edba94091898"), "name" : "stephen1", "age" : 35, "genda" : "male", "email" : "stephen@hotmail.com" }

--i表示忽略大小写

db.test.find({name:/stephen?/i})

5、数组数据查询

    db.wqq.insert({name:["aa","bb","cc"]})

db.wqq.insert({name:["aa","ee","cc"]})

    db.wqq.insert({name:["ff","ee","cc"]})

--数组中所有包含banana的文档都会被检索出来

db.wqq.find({name:"aa"})

{ "_id" : ObjectId("59f1c60388f3edba9409189c"), "name" : [ "aa", "bb", "cc" ] }

    { "_id" : ObjectId("59f1c6b988f3edba9409189d"), "name" : [ "aa", "ee", "cc" ] }

--检索数组中需要包含多个元素的情况,这里使用$all。下面的示例中,数组中必须同时包含ff和ee

db.wqq.find({name:{$all:["ff","cc"]}})

{ "_id" : ObjectId("59f1c6ba88f3edba9409189e"), "name" : [ "ff", "ee", "cc" ] }

--精确匹配即被检索出来的文档,name值中的数组数据必须和查询条件完全匹配,即不能多,也不能少,顺序也必须保持一致

    db.wqq.find({name:["ff","ee","cc"]})

{ "_id" : ObjectId("59f1c6ba88f3edba9409189e"), "name" : [ "ff", "ee", "cc" ] }

--匹配数组中指定下标元素的值,数组的起始下标是0

db.wqq.find({"name.1":"bb"})

    { "_id" : ObjectId("59f1c60388f3edba9409189c"), "name" : [ "aa", "bb", "cc" ] }

--可以通过$size获取数组的长度,但是$size不能和比较操作符联合使用

db.wqq.find({"name":{$size:3}})

    { "_id" : ObjectId("59f1c60388f3edba9409189c"), "name" : [ "aa", "bb", "cc" ] }

    { "_id" : ObjectId("59f1c6b988f3edba9409189d"), "name" : [ "aa", "ee", "cc" ] }

    { "_id" : ObjectId("59f1c6ba88f3edba9409189e"), "name" : [ "ff", "ee", "cc" ] }

--如果需要检索size > n的结果,不能直接使用$size,只能是添加一个额外的键表示数据中的元素数据,在操作数据中的元素时,需要同时更新size键的值

--为后面的实验构造数据

db.wqq.update({}, {"$set": {"size":3}},false,true)

    WriteResult({ "nMatched" : 3, "nUpserted" : 0, "nModified" : 3 })

    > db.wqq.find()

    { "_id" : ObjectId("59f1c60388f3edba9409189c"), "name" : [ "aa", "bb", "cc" ], "size" : 3 }

    { "_id" : ObjectId("59f1c6b988f3edba9409189d"), "name" : [ "aa", "ee", "cc" ], "size" : 3 }

    { "_id" : ObjectId("59f1c6ba88f3edba9409189e"), "name" : [ "ff", "ee", "cc" ], "size" : 3 }

--每次添加一个新元素,都要原子性的自增size一次

db.wqq.update({},{$push:{name:123},$inc:{size:1}},0,1)

    WriteResult({ "nMatched" : 3, "nUpserted" : 0, "nModified" : 3 })

    > db.wqq.find()

    { "_id" : ObjectId("59f1c60388f3edba9409189c"), "name" : [ "aa", "bb", "cc", 123 ], "size" : 4 }

    { "_id" : ObjectId("59f1c6b988f3edba9409189d"), "name" : [ "aa", "ee", "cc", 123 ], "size" : 4 }

    { "_id" : ObjectId("59f1c6ba88f3edba9409189e"), "name" : [ "ff", "ee", "cc", 123 ], "size" : 4 }

--通过$slice返回数组中的部分数据。"$slice":2表示数组中的前两个元素

db.wqq.find({},{name:{$slice:2},size:0})   //若为负数则是最后2个元素

    { "_id" : ObjectId("59f1c60388f3edba9409189c"), "name" : [ "aa", "bb" ] }

    { "_id" : ObjectId("59f1c6b988f3edba9409189d"), "name" : [ "aa", "ee" ] }

    { "_id" : ObjectId("59f1c6ba88f3edba9409189e"), "name" : [ "ff", "ee" ] }

--$slice : [2,1],表示从第二个2元素开始取1个,如果获取数量大于2后面的元素数量,则取后面的全部数据

db.wqq.find({},{name:{$slice:[2,1]}})

db.wqq.find({},{name:{$slice:[2,1]},size:0})

   { "_id" : ObjectId("59f1c60388f3edba9409189c"), "name" : [ "cc" ] }

   { "_id" : ObjectId("59f1c6b988f3edba9409189d"), "name" : [ "cc" ] }

   { "_id" : ObjectId("59f1c6ba88f3edba9409189e"), "name" : [ "cc" ] }

6、内嵌文档查询

    --当嵌入式文档为数组时,需要$elemMatch操作符来帮助定位某一个元素匹配的情况,否则嵌入式文件将进行全部的匹配

    --即检索时需要将所有元素都列出来作为查询条件方可

    db.aa.insert({comments:[{author:"sharesoe",score:3},{author:"mary",score:6}]})

    WriteResult({ "nInserted" : 1 })

    > db.aa.find()

    { "_id" : ObjectId("59f1cc8e88f3edba9409189f"), "comments" : [ { "author" : "sharesoe", "score" : 3 }, { "author" : "mary", "score" : 6 } ] }

  --

db.aa.find({comments:{$elemMatch:{author:"sharesoe",score:{$gte:3}}}})

    { "_id" : ObjectId("59f1cc8e88f3edba9409189f"), "comments" : [ { "author" : "sharesoe", "score" : 3 }, { "author" : "mary", "score" : 6 } ] }


相关内容

热门资讯

2026 WAIC观察:机器人... 摘要:具身智能的“iPhone时刻”何时来? 今年WAIC的火爆超出了所有人的预期,黄牛票卖到200...
票据扫描后显示查无此票?沈阳一... 近日,有市民向潇湘晨报·晨视频爆料,自己在辽宁沈阳臻悦影城购买《功夫女足》电影票,出票后用国家电影事...
没钱打伊朗了?美媒爆料:美军连... 前线炮火不断,后方战费告急。由于伊朗冲突带来的巨额开支超乎预期,美国国防部正步入“断粮”边缘。美国《...
三星 Galaxy Z Fol... 三星目前已经确认,将于7月22日 21:00带来三星Galaxy全球新品发布活动。也就是说,明天大家...
航天员举办公益科普 为民众沉浸... 中新网广州7月21日电 (记者 王坚)在中国航天事业创建70周年之际,嫦娥六号月背玄武岩国旗实物近日...
消失30年的功夫童星,又打回来... 作者 | 肖瑶 编辑 | 吴擎这个夏天“打”得最爽的电影《火遮眼》里,人们认出了谢苗。他是主角。那个...
太空算力,将数据中心搬上天(经... 本报记者 王 政近年来,我国加强人工智能科技创新,积极推进“人工智能+”行动,智能经济核心产业规模已...
半自动洗衣机洗涤电机嗡嗡响不转 1、有可能是使用的时候洗衣机使用的电流功率比电源线和插线板之间的输出电流功率大,在这种情况下的话就会...
油烟机电机不转有什么故障 油烟机电机不转,可能存在以下故障:1.电源故障:若油烟机的电源线有擦伤、切割、线路松动等导致电源供电...
全自动洗衣机电机响但是不转 这种不转的情况有很多种比如定时器故障、电源线插头与插座接触不良、电机启动电容损坏、电机线圈损坏、电机...