本文实例讲述了MongoDB数据库基础操作。分享给大家供大家参考,具体如下:
1.创建数据库
>use test > db.test.insert({"name":1})
- 插入之后才能查到test
2.查看数据库
>show dbs
3.删除数据库
> use test > db.dropDatabase()
4.创建集合
4.1 集合概念
- 集合就是一组文档,相当于多条记录。
> db.title.insert({"name":"hyx"})
- 插入之后即创建集合
5.查看集合
> show collections
6.删除集合
>use test >db.title.drop()
7.插入文档
7.1 文档概念
- 多个键及其关联的值有序地放置在一起就是文档。
- 文档类似于json数据
> db.file.insert({name:"huangyuxin",age:11})
8.查看文档
>db.files.find()
9.变量方式插入文档
> document=({by:"hyx"}) { "by" : "hyx" } > db.file.insert(document) WriteResult({ "nInserted" : 1 }) > db.file.find() { "_id" : ObjectId("5c6e8a060fc535200b893f29"), "name" : "huangyuxin", "age" : 11 } { "_id" : ObjectId("5c6e8b1c0fc535200b893f2a"), "by" : "hyx" } >
10.同时插入多条
> var res = db.file.insertMany([{"b": 3}, {'c': 4}]) > res { "acknowledged" : true, "insertedIds" : [ ObjectId("5c6e8bba0fc535200b893f2b"), ObjectId("5c6e8bba0fc535200b893f2c") ] } > db.file.find() { "_id" : ObjectId("5c6e8a060fc535200b893f29"), "name" : "huangyuxin", "age" : 11 } { "_id" : ObjectId("5c6e8b1c0fc535200b893f2a"), "by" : "hyx" } { "_id" : ObjectId("5c6e8bba0fc535200b893f2b"), "b" : 3 } { "_id" : ObjectId("5c6e8bba0fc535200b893f2c"), "c" : 4 } >
11.更新文档
> db.file.update({"name":"huangyuxin"},{$set:{"name":"hyx"}}) WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 }) > db.file.find() { "_id" : ObjectId("5c6e8a060fc535200b893f29"), "name" : "hyx", "age" : 11 } { "_id" : ObjectId("5c6e8b1c0fc535200b893f2a"), "by" : "hyx" } { "_id" : ObjectId("5c6e8bba0fc535200b893f2b"), "b" : 3 } { "_id" : ObjectId("5c6e8bba0fc535200b893f2c"), "c" : 4 } { "_id" : ObjectId("5c6e8cdf0fc535200b893f2d"), "name" : "hyx" } >
> db.file.save({"_id" : ObjectId("5c6e8b1c0fc535200b893f2a"),"name":"hyx"}) WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 }) > db.file.find() { "_id" : ObjectId("5c6e8a060fc535200b893f29"), "name" : "hyx", "age" : 11 } { "_id" : ObjectId("5c6e8b1c0fc535200b893f2a"), "name" : "hyx" } { "_id" : ObjectId("5c6e8bba0fc535200b893f2b"), "b" : 3 } { "_id" : ObjectId("5c6e8bba0fc535200b893f2c"), "c" : 4 } { "_id" : ObjectId("5c6e8cdf0fc535200b893f2d"), "name" : "hyx" } >
12.删除文档
12.1删除指定文档
> db.title.find() { "_id" : ObjectId("5c6e89060fc535200b893f27"), "name" : "yx" } > db.file.find() { "_id" : ObjectId("5c6e8a060fc535200b893f29"), "name" : "hyx", "age" : 11 } { "_id" : ObjectId("5c6e8b1c0fc535200b893f2a"), "name" : "hyx" } { "_id" : ObjectId("5c6e8bba0fc535200b893f2b"), "b" : 3 } { "_id" : ObjectId("5c6e8bba0fc535200b893f2c"), "c" : 4 } { "_id" : ObjectId("5c6e8cdf0fc535200b893f2d"), "name" : "hyx" } > db.file.remove({"b":3}) WriteResult({ "nRemoved" : 1 }) > db.file.find() { "_id" : ObjectId("5c6e8a060fc535200b893f29"), "name" : "hyx", "age" : 11 } { "_id" : ObjectId("5c6e8b1c0fc535200b893f2a"), "name" : "hyx" } { "_id" : ObjectId("5c6e8bba0fc535200b893f2c"), "c" : 4 } { "_id" : ObjectId("5c6e8cdf0fc535200b893f2d"), "name" : "hyx" } >
12.2删除全部文档
>db.file.deleteMany({})
12.3删除多个文档
>db.file.deleteMany({ status : 1 })
- 删除当前库所有status 等于 1 的文档
13.条件表达式
13.1$gt 大于
- 查询age 大于 0 的数据
> db.title.find({age:{$gt : 0}}) { "_id" : ObjectId("5c6f7d633ea8783bbfb7fd5e"), "age" : 10 } >
13.2 $lt 小于
13.3 $gte 大于等于 $lte 小于等于
- 查询age 大于等于 0 的数据
> db.title.find({age:{$gte : 1}})
13.4 大于小于
> db.title.find({age:{$lt:13,$gt:10}}) { "_id" : ObjectId("5c6f7ded3ea8783bbfb7fd5f"), "age" : 12 } { "_id" : ObjectId("5c6f7e833ea8783bbfb7fd60"), "age" : 12 } >
13.5 $ne 不等于 $eq 等于
14. $type操作符
- $type操作符是基于BSON类型来检索集合中匹配的数据类型,并返回结果。
> db.title.find({"name" : {$type : 2}}) { "_id" : ObjectId("5c6e89060fc535200b893f27"), "name" : "yx" } >
15. limit()
- 查询指定条数
> db.title.find().limit(2) { "_id" : ObjectId("5c6e89060fc535200b893f27"), "name" : "yx" } { "_id" : ObjectId("5c6f7d633ea8783bbfb7fd5e"), "age" : 10 } >
- 第一个 {} 放 where 条件,为空表示返回集合中所有文档。
- 第二个 {} 指定那些列显示和不显示 (0表示不显示 1表示显示)。
> db.title.find({},{"name":1,_id:0}).limit(1) { "name" : "yx" } >
16.skip()
- 跳过几条数据
- 不要轻易使用Skip来做查询,否则数据量大了就会导致性能急剧下降,这是因为skip是一条一条的数过来的,多了自然就慢了。
17.sort()
- 1 为升序排列,而 -1 是用于降序排列。
> db.title.find({},{'age':1,_id:0}).sort({age:1}) { } { "age" : 10 } { "age" : 12 } { "age" : 12 } > db.title.find({},{'age':1,_id:0}).sort({age:-1}) { "age" : 12 } { "age" : 12 } { "age" : 10 } { } >
18.索引
18.1 创建单个索引
- 1 为指定按升序创建索引,降序索引指定为 -1
>db.title.createIndex({"age":1})
18.2 创建多个索引
>db.title.createIndex({"name":1,"age":-1})
18.3 查看索引
>db.col.getIndexes()
18.4 查看索引大小
>db.col.totalIndexSize()
18.5 删除所有集合索引
>db.col.dropIndexes()
18.6 删除指定索引
db.title.dropIndex({'age':1}) { "nIndexesWas" : 2, "ok" : 1 } >
希望本文所述对大家MongoDB数据库程序设计有所帮助。
标签:
MongoDB数据库,基础操作
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
白云城资源网 Copyright www.dyhadc.com
暂无“MongoDB数据库基础操作总结”评论...
稳了!魔兽国服回归的3条重磅消息!官宣时间再确认!
昨天有一位朋友在大神群里分享,自己亚服账号被封号之后居然弹出了国服的封号信息对话框。
这里面让他访问的是一个国服的战网网址,com.cn和后面的zh都非常明白地表明这就是国服战网。
而他在复制这个网址并且进行登录之后,确实是网易的网址,也就是我们熟悉的停服之后国服发布的暴雪游戏产品运营到期开放退款的说明。这是一件比较奇怪的事情,因为以前都没有出现这样的情况,现在突然提示跳转到国服战网的网址,是不是说明了简体中文客户端已经开始进行更新了呢?
更新日志
2024年11月05日
2024年11月05日
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]