MongoDB数据库操作有哪些?一文带你快速了解
Admin 2021-05-12 群英技术资讯 694 次浏览
这篇文章主要给大家介绍一下关于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登录admin方法:1、登录admin但不启动授权,mongo默认不启动;2、用./mongo命令连接数据库;3、用use admin切换到admin数据库;4、然后创建用户,至此就完成了登录。
MongoDB中怎样进行删除文档,方法是什么?这篇文章主要讲解了关于mongodb删除文档的具体步骤内容,感兴趣的小伙伴可以看看以下相关知识点,希望小编整理的内容能帮助到大家解决问题。
idea配置mongodb的方法:1、安装mongodb插件;2、连接mongodb,首先点击添加链接,然后填写链接的名称,然后是服务的IP地址,然后点击Test Connection,出现弹框则连接成功。
这篇文章主要给大家分享一下MongoDB副本集是如何搭建的,以下是具体搭建过程,有一定的借鉴价值,有需要的朋友可以参考参考,接下来我们就来一起看看MongoDB副本集搭建过程。
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008