欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 科技 > IT业 > 数据库:一文掌握 MongoDB 的各种指令(MongoDB指令备忘)

数据库:一文掌握 MongoDB 的各种指令(MongoDB指令备忘)

2025/3/19 9:57:41 来源:https://blog.csdn.net/cui_yonghua/article/details/146331989  浏览:    关键词:数据库:一文掌握 MongoDB 的各种指令(MongoDB指令备忘)

文章目录

    • 入门
      • 连接 MongoDB Shell
      • 显示数据库
      • 切换数据库
      • 显示集合
      • 运行 JavaScript 文件
    • CRUD
      • 创建
      • 寻找文件
      • 使用运算符查找文档
      • 读取
      • 更新
      • 删除
    • 数据库和集合
      • Drop
      • 创建集合
      • 其他采集功能
    • 索引
      • 列表索引
      • 创建索引
      • 删除索引
      • 隐藏/取消隐藏索引
    • 方便的命令
    • 其它
      • 改变流
      • 分片集群
      • 副本集

MongoDB 此备忘单包含一些方便的提示、命令和快速参考,可让您立即连接并进行 CRUD

入门

连接 MongoDB Shell

mongo # 默认连接到 mongodb://127.0.0.1:27017
mongo --host <host> --port <port> -u <user> -p <pwd> # 如果需要提示,请省略密码
mongo "mongodb://192.168.1.1:27017"
# MongoDB 地图集
mongo "mongodb+srv://cluster-name.abcde.mongodb.net/<dbname>" --username <username>

显示数据库

show dbs
db // 打印当前数据库

切换数据库

use <database_name>

显示集合

show collections

运行 JavaScript 文件

load("myScript.js")

CRUD

创建

db.coll.insertOne({ name: "Max" })
db.coll.insert([{ name: "Max"}, {name:"Alex"}]) // 批量插入
db.coll.insert([{ name: "Max"}, {name:"Alex"}], {ordered: false}) // 无序批量插入
db.coll.insert({ date: ISODate()})
db.coll.insert({ name: "Max"}, {"writeConcern": {"w": "majority", "wtimeout": 5000}})

寻找文件

CommandsDescription
db.docx.findOne()查找一个随机文档
db.docx.find().prettyPrint()查找所有文档
db.docx.find({}, {name:true, _id:false})仅显示文档 Docx 的名称
db.docx.find({}, {name:true, _id:false})可以在多个文件中按属性查找一个文件

使用运算符查找文档

OperatorDescriptionCommands
$gt大于db.docx.find({class:{$gt:'T'}
$gte大于等于db.docx.find({class:{$gt:'T'}
$lt小于db.docx.find({class:{$lt:'T'}
$lte小于等于db.docx.find({class:{$lte:'T'}
$exists属性是否存在db.docx.find({class:{$gt:'T'}
$regex正则表达式匹配db.docx.find({name:{$regex:'^USS\\sE'}})
$type按元素类型搜索db.docx.find({name : {$type:4}})

读取

db.coll.findOne() // 返回单个文档
db.coll.find()    // 返回一个游标 - 显示 20 个结果 - "it" 显示更多
db.coll.find().pretty()
db.coll.find({name: "Max", age: 32}) // 隐式逻辑“与”。
db.coll.find({date: ISODate("2020-09-25T13:57:17.180Z")})// 或“queryPlanner”或“allPlansExecution”
db.coll.find({name: "Max", age: 32}).explain("executionStats") 
db.coll.distinct("name")// 数数
db.coll.count({age: 32})          // 基于馆藏元数据的估计
db.coll.estimatedDocumentCount()  // 基于馆藏元数据的估计
db.coll.countDocuments({age: 32}) // 聚合管道的别名 - 准确计数// Comparison 比较
db.coll.find({"year": {$gt: 1970}})
db.coll.find({"year": {$gte: 1970}})
db.coll.find({"year": {$lt: 1970}})
db.coll.find({"year": {$lte: 1970}})
db.coll.find({"year": {$ne: 1970}})
db.coll.find({"year": {$in: [1958, 1959]}})
db.coll.find({"year": {$nin: [1958, 1959]}})// Logical 逻辑
db.coll.find({name:{$not: {$eq: "Max"}}})
db.coll.find({$or: [{"year" : 1958}, {"year" : 1959}]})
db.coll.find({$nor: [{price: 1.99}, {sale: true}]})
db.coll.find({$and: [{$or: [{qty: {$lt :10}}, {qty :{$gt: 50}}]},{$or: [{sale: true}, {price: {$lt: 5 }}]}]
})// Element 元素
db.coll.find({name: {$exists: true}})
db.coll.find({"zipCode": {$type: 2 }})
db.coll.find({"zipCode": {$type: "string"}})// Aggregation Pipeline 聚合管道
db.coll.aggregate([{$match: {status: "A"}},{$group: {_id: "$cust_id", total: {$sum: "$amount"}}},{$sort: {total: -1}}
])// 使用“文本”索引进行文本搜索
db.coll.find({$text: {$search: "cake"}}, {score: {$meta: "textScore"}}).sort({score: {$meta: "textScore"}})// Regex 正则表达式
db.coll.find({name: /^Max/})   // 正则表达式:以字母“M”开头
db.coll.find({name: /^Max$/i}) // 正则表达式不区分大小写// Array
db.coll.find({tags: {$all: ["Realm", "Charts"]}})
db.coll.find({field: {$size: 2}}) // 无法索引 - 更喜欢存储数组的大小并更新它
db.coll.find({results: {$elemMatch: {product: "xyz", score: {$gte: 8}}}})// Projections 预测
db.coll.find({"x": 1}, {"actors": 1})               // actors + _id
db.coll.find({"x": 1}, {"actors": 1, "_id": 0})     // actors
db.coll.find({"x": 1}, {"actors": 0, "summary": 0}) // 除了“actors”和“summary”之外的所有内容// Sort 排序, skip 跳过, limit 限制
db.coll.find({}).sort({"year": 1, "rating": -1}).skip(10).limit(3)// Read Concern 阅读关注
db.coll.find().readConcern("majority")

更新

db.coll.update({"_id": 1}, {"year": 2016}) // 警告! 替换整个文档
db.coll.update({"_id": 1}, {$set: {"year": 2016, name: "Max"}})
db.coll.update({"_id": 1}, {$unset: {"year": 1}})
db.coll.update({"_id": 1}, {$rename: {"year": "date"} })
db.coll.update({"_id": 1}, {$inc: {"year": 5}})
db.coll.update({"_id": 1}, {$mul: {price: NumberDecimal("1.25"), qty: 2}})
db.coll.update({"_id": 1}, {$min: {"imdb": 5}})
db.coll.update({"_id": 1}, {$max: {"imdb": 8}})
db.coll.update({"_id": 1}, {$currentDate: {"lastModified": true}})
db.coll.update({"_id": 1}, {$currentDate: {"lastModified": {$type: "timestamp"}}})// Array
db.coll.update({"_id": 1}, {$push :{"array": 1}})
db.coll.update({"_id": 1}, {$pull :{"array": 1}})
db.coll.update({"_id": 1}, {$addToSet :{"array": 2}})
db.coll.update({"_id": 1}, {$pop: {"array": 1}})  // 最后一个元素
db.coll.update({"_id": 1}, {$pop: {"array": -1}}) // 第一个元素
db.coll.update({"_id": 1}, {$pullAll: {"array" :[3, 4, 5]}})
db.coll.update({"_id": 1}, {$push: {scores: {$each: [90, 92, 85]}}})
db.coll.updateOne({"_id": 1, "grades": 80}, {$set: {"grades.$": 82}})
db.coll.updateMany({}, {$inc: {"grades.$[]": 10}})
db.coll.update({}, {$set: {"grades.$[element]": 100}}, {multi: true, arrayFilters: [{"element": {$gte: 100}}]})// 更新很多
db.coll.update({"year": 1999}, {$set: {"decade": "90's"}}, {"multi":true})
db.coll.updateMany({"year": 1999}, {$set: {"decade": "90's"}})// FindOneAndUpdate 查找并更新
db.coll.findOneAndUpdate({"name": "Max"}, {$inc: {"points": 5}}, {returnNewDocument: true})// Upsert 更新插入
db.coll.update({"_id": 1}, {$set: {item: "apple"}, $setOnInsert: {defaultQty: 100}}, {upsert: true})// Replace 代替
db.coll.replaceOne({"name": "Max"}, {"firstname": "Maxime", "surname": "Beugnet"})// Save 保存
db.coll.save({"item": "book", "qty": 40})// Write concern 写关注
db.coll.update({}, {$set: {"x": 1}}, {"writeConcern": {"w": "majority", "wtimeout": 5000}})

删除

db.coll.remove({name: "Max"})
db.coll.remove({name: "Max"}, {justOne: true})
db.coll.remove({}) // 警告!删除所有文档但不删除集合本身及其索引定义
db.coll.remove({name: "Max"}, {"writeConcern": {"w": "majority", "wtimeout": 5000}})
db.coll.findOneAndDelete({"name": "Max"})

数据库和集合

Drop

// 删除集合及其索引定义
db.coll.drop()    
// 仔细检查你*不*在 PROD 集群上......:-)
db.dropDatabase() 

创建集合

// 使用 $jsonschema 创建集合
db.createCollection("contacts", {validator: {$jsonSchema: {bsonType: "object",required: ["phone"],properties: {phone: {bsonType: "string",description: "必须是一个字符串并且是必需的"},email: {bsonType: "string",pattern: "@mongodb\.com$",description: "必须是字符串并匹配正则表达式模式"},status: {enum: [ "Unknown", "Incomplete" ],description: "只能是枚举值之一"}}}}
})

其他采集功能

db.coll.stats()
db.coll.storageSize()
db.coll.totalIndexSize()
db.coll.totalSize()
db.coll.validate({full: true})
// 第二个参数用于删除目标集合(如果存在)
db.coll.renameCollection("new_coll", true)

索引

列表索引

db.coll.getIndexes()
db.coll.getIndexKeys()

创建索引

// 索引类型
db.coll.createIndex({"name": 1})                // 单字段索引
db.coll.createIndex({"name": 1, "date": 1})     // 复合索引
db.coll.createIndex({foo: "text", bar: "text"}) // 文本索引
db.coll.createIndex({"$**": "text"})            // 通配符文本索引
db.coll.createIndex({"userMetadata.$**": 1})    // 通配符索引
db.coll.createIndex({"loc": "2d"})              // 二维索引
db.coll.createIndex({"loc": "2dsphere"})        // 2dsphere 索引
db.coll.createIndex({"_id": "hashed"})          // 哈希索引// Index Options
db.coll.createIndex({"lastModifiedDate": 1}, {expireAfterSeconds: 3600})      // TTL指数
db.coll.createIndex({"name": 1}, {unique: true})
db.coll.createIndex({"name": 1}, {partialFilterExpression: {age: {$gt: 18}}}) // 部分索引
// 强度为 1 或 2 的不区分大小写的索引
db.coll.createIndex({"name": 1}, {collation: {locale: 'en', strength: 1}})
db.coll.createIndex({"name": 1 }, {sparse: true})

删除索引

db.coll.dropIndex("name_1")

隐藏/取消隐藏索引

db.coll.hideIndex("name_1")
db.coll.unhideIndex("name_1")

方便的命令

use admin
db.createUser({"user": "root", "pwd": passwordPrompt(), "roles": ["root"]})
db.dropUser("root")
db.auth( "user", passwordPrompt() )use test
db.getSiblingDB("dbname")
db.currentOp()
db.killOp(123) // opiddb.fsyncLock()
db.fsyncUnlock()db.getCollectionNames()
db.getCollectionInfos()
db.printCollectionStats()
db.stats()db.getReplicationInfo()
db.printReplicationInfo()
db.isMaster()
db.hostInfo()
db.printShardingStatus()
db.shutdownServer()
db.serverStatus()db.setSlaveOk()
db.getSlaveOk()db.getProfilingLevel()
db.getProfilingStatus()
db.setProfilingLevel(1, 200) // 0 == OFF, 1 == ON with slowms, 2 == ONdb.enableFreeMonitoring()
db.disableFreeMonitoring()
db.getFreeMonitoringStatus()db.createView("viewName", "sourceColl", [{$project:{department: 1}}])

其它

改变流

watchCursor = db.coll.watch([{$match : {"operationType": "insert" }}
])while (!watchCursor.isExhausted()){if (watchCursor.hasNext()){print(tojson(watchCursor.next()));}
}

分片集群

sh.status()
sh.addShard("rs1/mongodbd1.example.net:27017")
sh.shardCollection("mydb.coll", {zipcode: 1})sh.moveChunk("mydb.coll", { zipcode: "53187" }, "shard0019")
sh.splitAt("mydb.coll", {x: 70})
sh.splitFind("mydb.coll", {x: 70})
sh.disableAutoSplit()
sh.enableAutoSplit()sh.startBalancer()
sh.stopBalancer()
sh.disableBalancing("mydb.coll")
sh.enableBalancing("mydb.coll")
sh.getBalancerState()
sh.setBalancerState(true/false)
sh.isBalancerRunning()sh.addTagRange("mydb.coll", {state: "NY",zip: MinKey}, {state: "NY",zip: MaxKey}, "NY")
sh.removeTagRange("mydb.coll", {state: "NY",zip: MinKey}, {state: "NY",zip: MaxKey}, "NY")
sh.addShardTag("shard0000", "NYC")
sh.removeShardTag("shard0000", "NYC")sh.addShardToZone("shard0000", "JFK")
sh.removeShardFromZone("shard0000", "NYC")
sh.removeRangeFromZone("mydb.coll", {a: 1, b: 1}, {a: 10, b: 10})

副本集

rs.status()
rs.initiate({"_id": "replicaTest",members: [{ _id: 0, host: "127.0.0.1:27017" },{ _id: 1, host: "127.0.0.1:27018" },{ _id: 2, host: "127.0.0.1:27019",arbiterOnly:true }]
})
rs.add("mongodbd1.example.net:27017")
rs.addArb("mongodbd2.example.net:27017")
rs.remove("mongodbd1.example.net:27017")
rs.conf()
rs.isMaster()
rs.printReplicationInfo()
rs.printSlaveReplicationInfo()
rs.reconfig(<valid_conf>)
rs.slaveOk()
rs.stepDown(20, 5)
// (stepDownSecs, secondaryCatchUpPeriodSecs)

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

热搜词