mongoDB分组查询时将null值统一设置为默认值

mongoDB分组查询时将null值统一设置为默认值


查询

{ $ifNull: [ expression, replacement-expression-if-null ] }:用于判断第一个表达式是否为 null,如果为 null 则返回第二个参数的值,如果不为 null 则返回第一个参数的值。

统计order表中统计日期[count_date]为2020-12-31到2020-01-01的各个渠道的销售额,如果渠道[channel]字段为null,则默认统计为其他渠道。

db.getCollection('order').aggregate([
{
	$project:{
		'sale': '$销售额',
		'channel': {"$ifNull":['$渠道', '其他渠道']},
		'count_date':'$统计日期'
	}
},
{
	$match:{
		"count_date":{$gte:'2020-01-01',$lte:'2020-12-31'}
	}
},
{
	$group:{
		_id: '$channel', 
		num_tutorial: { $sum: "$sale"}
	}
}
])

查询结果


/* 1 */
{
    "_id" : "深圳",
    "num_tutorial" : 1187294.13
}

/* 2 */
{
    "_id" : "广州",
    "num_tutorial" : 41084.94
}

/* 3 */
{
    "_id" : "上海",
    "num_tutorial" : 729997.05
}

/* 4 */
{
    "_id" : "其他渠道",
    "num_tutorial" : 19922.23
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值