1. $project - 筛选

  • 普通列({成员:1 | true}):表示要显示的内容
  • “_id” 列({“_id”:0 | false}):表示 “_id” 列是否显示
  • 条件过滤列({成员:表达式}):满足表达式之后的数据可以进行显示
准备数据
  1. db.getCollection('sales').insertMany([
  2. { "_id" : 1, "item" : "1", "price" : 10, "quantity" : 2},
  3. { "_id" : 2, "item" : "2", "price" : 20, "quantity" : 1},
  4. { "_id" : 3, "item" : "3", "price" : 5, "quantity" : 10},
  5. { "_id" : 4, "item" : "4", "price" : 5, "quantity" : 20},
  6. { "_id" : 5, "item" : "5", "price" : 10, "quantity" : 10}
  7. ])

1.1 只显示出 price列

  1. db.sales.aggregate( [ { $project : { price : 1 } } ] )

mongo管道操作符 - $project - 图1


1.2 进行四则远算

加法($add)、减法($subtract)、乘法($multipy)、除法($divide)、求模($mod

示例:对 quantity 乘以 2(使用 $multiply 操作)

  1. // 对返回值的结果 放入到 quantity
  2. db.sales.aggregate([{ $project :
  3. { _id: 0, item : 1 , price : 1, quantity: {"qty" : { "$multiply" : ["$quantity", 2] }} }
  4. }])

1.3 设置别名

  1. // 通过qty来表示"$quantity"
  2. db.sales.aggregate( [ { $project : { qty: "$quantity" } } ] )
  3. // 直接使用别名"qty"返回数据
  4. db.sales.aggregate([{ $project :
  5. { _id: 0, item : 1 , price : 1, "qty" : { "$multiply" : ["$quantity", 2] }}
  6. }])

转自 && 感谢: https://blog.csdn.net/pengjunlee/article/details/106860858