1. $project - 筛选
- 普通列({成员:1 | true}):表示要显示的内容
- “_id” 列({“_id”:0 | false}):表示 “_id” 列是否显示
- 条件过滤列({成员:表达式}):满足表达式之后的数据可以进行显示
db.getCollection('sales').insertMany([
{ "_id" : 1, "item" : "1", "price" : 10, "quantity" : 2},
{ "_id" : 2, "item" : "2", "price" : 20, "quantity" : 1},
{ "_id" : 3, "item" : "3", "price" : 5, "quantity" : 10},
{ "_id" : 4, "item" : "4", "price" : 5, "quantity" : 20},
{ "_id" : 5, "item" : "5", "price" : 10, "quantity" : 10}
])
1.1 只显示出 price列
db.sales.aggregate( [ { $project : { price : 1 } } ] )
1.2 进行四则远算
加法($add)、减法($subtract)、乘法($multipy)、除法($divide)、求模($mod)示例:对 quantity 乘以 2(使用 $multiply 操作)
// 对返回值的结果 放入到 quantity 下
db.sales.aggregate([{ $project :
{ _id: 0, item : 1 , price : 1, quantity: {"qty" : { "$multiply" : ["$quantity", 2] }} }
}])
1.3 设置别名
// 通过qty来表示"$quantity"
db.sales.aggregate( [ { $project : { qty: "$quantity" } } ] )
// 直接使用别名"qty"返回数据
db.sales.aggregate([{ $project :
{ _id: 0, item : 1 , price : 1, "qty" : { "$multiply" : ["$quantity", 2] }}
}])
转自 && 感谢: https://blog.csdn.net/pengjunlee/article/details/106860858