小程序
小游戏
企业微信
微信支付
扫描小程序码分享
类似的情况....单字段运算,或者多字段运算....文档好像没找到类似的?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
可以的,A > B
const $ = db.command.aggregate
db.collection('table2').aggregate()
.addFields({
matched: $.gt(['$A', '$B'])
})
.match({
matched:!0
.end().then(res => console.log(res))
.catch(err => console.error(err))
=================
A*B > 300
matched: $.gt([$.multiply(['$A', '$B']), 300])
==============
多个数或字段值相乘
$.multiply(['$A', '$B', 10,....])
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-server-api/database/aggregation/operators/multiply.html
还有很多运算api,自己每个都点一下,看看是什么意思,以后需要的时候,就知道有没有什么api可以使用了
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
.where({ A: _.expr($.gt([_.mul(15), 300]))})
.where({
A: _.expr($.gt([_.mul(15), 300]))
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
可以的,A > B
const $ = db.command.aggregate
db.collection('table2').aggregate()
.addFields({
matched: $.gt(['$A', '$B'])
})
.match({
matched:!0
})
.end().then(res => console.log(res))
.catch(err => console.error(err))
=================
A*B > 300
db.collection('table2').aggregate()
.addFields({
matched: $.gt([$.multiply(['$A', '$B']), 300])
})
.match({
matched:!0
})
.end().then(res => console.log(res))
.catch(err => console.error(err))
==============
多个数或字段值相乘
$.multiply(['$A', '$B', 10,....])
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-server-api/database/aggregation/operators/multiply.html
还有很多运算api,自己每个都点一下,看看是什么意思,以后需要的时候,就知道有没有什么api可以使用了
300
_.expr($.gt([$.multiply(['$A', '$B']), 300]))
没试过,可以实践一下