MongoDB数据库操作有哪些?一文带你快速了解
Admin 2021-05-12 群英技术资讯 624 次浏览
这篇文章主要给大家介绍一下关于MongoDB数据库的基础操作,对于新手学习和了解MongoDB数据库有一定的帮助,下面是关于MongoDB数据库的创建、删除、集合、文档等操作,有需要的朋友可以参考。
>use test > db.test.insert({"name":1})
>show dbs
> use test > db.dropDatabase()
> db.title.insert({"name":"hyx"})
> show collections
>use test >db.title.drop()
> db.file.insert({name:"huangyuxin",age:11})
>db.files.find()
> 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" } >
> 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 } >
> 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" } >
> 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" } >
>db.file.deleteMany({})
>db.file.deleteMany({ status : 1 })
> db.title.find({age:{$gt : 0}}) { "_id" : ObjectId("5c6f7d633ea8783bbfb7fd5e"), "age" : 10 } >
> db.title.find({age:{$gte : 1}})
> db.title.find({age:{$lt:13,$gt:10}}) { "_id" : ObjectId("5c6f7ded3ea8783bbfb7fd5f"), "age" : 12 } { "_id" : ObjectId("5c6f7e833ea8783bbfb7fd60"), "age" : 12 } >
> db.title.find({"name" : {$type : 2}}) { "_id" : ObjectId("5c6e89060fc535200b893f27"), "name" : "yx" } >
> db.title.find().limit(2) { "_id" : ObjectId("5c6e89060fc535200b893f27"), "name" : "yx" } { "_id" : ObjectId("5c6f7d633ea8783bbfb7fd5e"), "age" : 10 } >
> db.title.find({},{"name":1,_id:0}).limit(1) { "name" : "yx" } >
> 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 } { } >
>db.title.createIndex({"age":1})
>db.title.createIndex({"name":1,"age":-1})
>db.col.getIndexes()
>db.col.totalIndexSize()
>db.col.dropIndexes()
>> db.title.dropIndex({'age':1}) { "nIndexesWas" : 2, "ok" : 1 } >
关于MongoDB数据库的基础操作技巧就介绍到这,上述示例有一定的借鉴价值,有需要的朋友可以参考,希望对大家学习有帮助,更多MongoDB数据库操作技巧大家可以关注其他相关文章。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
MongoDB权限认证怎么启用?对于MongoDB不是很熟悉的朋友,可能对用户开启权限认证的方法步骤不是很了解,下面小编就和大家介绍一下MongoDB开启权限认证的方法。
下面小编就为大家带来一篇基于MongoDB数据库索引构建情况全面分析。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
了解数据的备份与恢复是很有必要的,因此我们很难保证数据不会出现意外,做好备份与恢复能够让数据损失降到最低。那么在mongodb如何创建备份,以及如何恢复数据呢?下面我们一起来学习一下。
MongoDB 删除数据库 语法 MongoDB 删除数据库的语法格式如下: db.dropDatabase() 删除当前数据库,默认为 test,你可以使用 db 命令查看当前数据库名。 实例 以下实例我们删除了数据库 runoob。 首先,查看所有数据库: > show dbs admin 0.000GB config 0.000GB local 0.000GB runoob 0.000GB 接下来我们切换到数..
MongoDB中group分组有几种情况,是怎样的?一些朋友可能会遇到这方面的问题,对此在下文小编向大家来讲解一下,内容详细,易于理解,希望大家阅读完这篇能有收获哦,有需要的朋友就往下看吧!
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008