# MongoDB 命令

# 创建用户(可读可写)

# 创建

db.createUser({user:"lkr40",pwd:"123456",roles:["readWrite"]})

# 检验

db.auth("lkr40","123456")

db.createUser({user:“lkr40”,pwd:“123456”,roles:[“readWrite”]})
Successfully added user: { “user” : “lkr40”, “roles” : [ “readWrite” ] }
db.auth(“lkr40”,“123456”)
1

# 登录

mongo 127.0.0.1:27017/mymongo -u lkr40 -p 123456

# 建立 / 使用数据库

use mymongo

use mymongo
switched to db mymongo

# 查询当前数据库

db

db
mymongo

# 删除数据库

db.dropDatabase()

# 查询时间

Date()

Date()
Wed Sep 06 2023 10:21:36 GMT+0800

# 创建集合

集合中可以包含子集合

# 显式创建(t)

db.createCollection("t")

db.createCollection(“t”)

# 隐式创建(t1)

db.t1.insert({"age":18})

db.t1.insert({“age”:18})
WriteResult({ “nInserted” : 1 })
show collections
t
t1

# 展示集合

show collections

show collections
t

t1

# 删除集合

db.t.drop()

db.t.drop()
true

# 查询文档

db.t1.find()

db.t1.find()

# 条件查询

# 等于

db.t.find({"x":1})

db.t.find({“x”:1})

# 小于

db.t.find({"x":{$lte : 5}})

# 大于

db.t.find({"x":{$lte : 5}})

# 在之中(包含)

db.t.find({"x":{$in : [1,3,5]}})

# 不在其中(不包含)

db.t.find({"x":{$nin : [1,3,5]}})

# 插入文档

# 单一插入

db.t1.insert({"_id":"1","age":23})

db.t1.insert({"_id":“1”,“age”:23})
WriteResult({ “nInserted” : 1 })
db.t1.find()

# 批量插入(单语句)

db.t1.insertMany([{"_id":2,"age":65},{"_id":3,"age":45}])

db.t1.insertMany([{"_id":2,“age”:65},{"_id":3,“age”:45}])
{ “acknowledged” : true, “insertedIds” : [ 2, 3 ] }
db.t1.find()
{ “_id” : ObjectId(“64f7ec7bff2142d2a2445360”), “age” : 18 }
{ “_id” : “1”, “age” : 33 }

# 循环插入(for)

for(i=1;i<9;i++) db.t.insert({"x":i})

for(i=1;i<9;i++) db.t.insert({“x”:i})
WriteResult({ “nInserted” : 1 })
db.t.find()
{ “_id” : ObjectId(“64f7f05bff2142d2a2445361”), “x” : 1 }
{ “_id” : ObjectId(“64f7f05cff2142d2a2445362”), “x” : 2 }
{ “_id” : ObjectId(“64f7f05cff2142d2a2445363”), “x” : 3 }
{ “_id” : ObjectId(“64f7f05cff2142d2a2445364”), “x” : 4 }
{ “_id” : ObjectId(“64f7f05cff2142d2a2445365”), “x” : 5 }
{ “_id” : ObjectId(“64f7f05cff2142d2a2445366”), “x” : 6 }

# 同 id 插入异常

db.t1.insert({"_id":“1”,“age”:23})
WriteResult({
“nInserted” : 0,
“writeError” : {
“code” : 11000,
“errmsg” : “E11000 duplicate key error collection: mymongo.t1 index: id dup key: { _id: “1” }”
}
})

# 修改(输入全部属性 / 替换)

db.t1.save({"_id":"1","age":33})

db.t1.save({"_id":“1”,“age”:33})
WriteResult({ “nMatched” : 1, “nUpserted” : 0, “nModified” : 1 })
db.t1.find()

# 更新

db.t1.update({"age":65},{$set:{"age":100}})

db.t1.update({“age”:65},{$set:{“age”:100}})
WriteResult({ “nMatched” : 1, “nUpserted” : 0, “nModified” : 1 })
db.t1.find()
{ “_id” : ObjectId(“64f7ec7bff2142d2a2445360”), “age” : 18 }
{ “_id” : “1”, “age” : 33 }

# 删除

# 批量删除

db.t1.remove({"age":33})

db.t1.remove({“age”:33})
WriteResult({ “nRemoved” : 1 })
db.t1.find()
{ “_id” : ObjectId(“64f7ec7bff2142d2a2445360”), “age” : 18 }

# 单一删除

db.t1.remove({"age":45},{justOne:1})

db.t1.remove({“age”:45},{justOne:1})
WriteResult({ “nRemoved” : 1 })
db.t1.find()
{ “_id” : ObjectId(“64f7ec7bff2142d2a2445360”), “age” : 18 }
{ “_id” : 2, “age” : 100 }

# Capped 限制

# 创建限制

db.createCollection("t2",{capped:true,size:3,max:8})
db.t2.isCapped()

# 检验

for(i=1;i<9;i++) db.t2.insert({"x":i})

db.t2.find();
{ “_id” : ObjectId(“64f7f23fff2142d2a244536a”), “x” : 2 }
{ “_id” : ObjectId(“64f7f23fff2142d2a244536b”), “x” : 3 }
{ “_id” : ObjectId(“64f7f23fff2142d2a244536c”), “x” : 4 }
{ “_id” : ObjectId(“64f7f23fff2142d2a244536d”), “x” : 5 }
{ “_id” : ObjectId(“64f7f23fff2142d2a244536e”), “x” : 6 }

# 结论

前面的数据被顶掉了

# pretty 美化输出

db.t3.insert({"_id":1,"phone":{"hemophone":"8617118","mobilephone":"18643079329"}})

db.t3.find().pretty();
{
“_id” : 1,
“phone” : {
“hemophone” : “8617118”,
“mobilephone” : “18643079329”
}
}

# 管道机制

更新于 阅读次数

请我喝[茶]~( ̄▽ ̄)~*

KarryLiu 微信支付

微信支付

KarryLiu 支付宝

支付宝