MongoDB 启动!

  • 用 api 操作数据库,而非 sql,爽!
  • mongoDB 的 database 下是 collection,collection 包含多个 document (mysql)。
  • document 可以是任意结构的,这点和 mysql 的 table 不同。

参考

CRUD

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
show dbs; // 显示 database
show databases;

use hello-mongo; // 切换或者创建 database

db; // 查看当前 database

db.dropDatabase(); // 删除 database

db.createCollection('aaa'); // 创建 collection

db.xxx.drop() //删除 collection

db.xxx.insertOne({ name: 'guang', age: 20, phone: '13222222222'});// 插入 document

db.xxx.insertMany([{ name: 'dong', age: 21}, {name: 'xxx', hobbies: ['writing']}]);

db.xxx.find({age: 20}); // 查询 collection

db.xxx.findOne({ age: 20});

db.xxx.findOne(); // 查询所有 collection

db.xxx.find({ age: { $in: [20, 21]}}) // 使用 in、nin 查询多个值

db.xxx.find({ $and: [{age: { $gte: 20 }}, { name: /dong\d/}]}) // 使用 and 指定多个条件同时成立

db.xxx.find({ $or: [{age: { $gt: 20 }}, { name: /dong*/}]}) // 使用 or 表示或者

db.xxx.find().skip(1).limit(2) // 使用 skip + limit 实现分页

db.xxx.updateOne({ name: 'guang'}, { $set: {age: 30}, $currentDate: { aaa: true } }) // updateOne、updateMany 更新

db.xxx.replaceOne({name: 'guang'}, { age: 30}) // 整体替换

db.xxx.deleteMany({ age: { $gt: 20 }}); // deleteOne、deleteMany 删除

db.xxx.count({ name: /guang/})

db.xxx.find().sort({ age: -1, name: 1})

QuerySelector

  • **$in**:用于判断字段值是否在给定的数组中,相当于 SQL 的 IN
  • **$gt**:匹配大于某个值的文档,对应 SQL 的 >
  • **$lt**:匹配小于某个值的文档,对应 SQL 的 <
  • **$gte**:匹配大于或等于某个值的文档,对应 SQL 的 >=
  • **$lte**:匹配小于或等于某个值的文档,对应 SQL 的 <=
  • **$ne**:匹配不等于某个值的文档,对应 SQL 的 <>!=

….

表关系

在关系型数据库中,我们使用外键和关联表来处理表与表之间的关系。而在 MongoDB 这样的文档型数据库中,没有内建的外键约束,常见的处理方式有两种:

https://www.mongodb.com/zh-cn/docs/manual/tutorial/model-referenced-one-to-many-relationships-between-documents/

嵌入(Embedding)

将相关数据直接嵌入到一个文档中,适用于“一对一”或“一对少”的关系。这种方式查询快,但数据冗余和更新较困难。

引用(Referencing)<更常用>

在文档中保存其他文档的 _id(ObjectId),需要时通过 Mongoose 的 populate() 方法进行关联查询。适用于“一对多”或“多对多”关系,虽然查询时需要额外操作,但数据保持独立,更新方便。

操作符与字段引用 $

聚合计算中的字段需要$引用, 直接使用如$lookup(join on) 不需要,因为 localField 与 foreignField 本身就是引用

在 MongoDB 中,$ 前缀用于标识 操作符字段引用,如:

  • "$sum", "$max" 这样的操作符用于在 $group 阶段进行聚合计算。
  • "$userId", "$amount" 等字段引用,通常用于 $group, $match, $project 等阶段,用来引用当前文档中的字段。

更新操作符

  • $set 是 MongoDB 的更新操作符,它的作用是将指定字段的值设置为新的值。如果该字段不存在,则会创建该字段。
  • $inc:用于对数值类型字段进行递增或递减操作。例如:{ $inc: { score: 1 } } 会使 score 字段加 1。
  • $unset:用于删除指定字段。例如:{ $unset: { fieldName: "" } } 会将 fieldName 字段从文档中移除。
  • $push:用于向数组字段中添加新元素。
  • $pull:用于从数组中移除满足条件的元素。


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!