根据数据来源不同,计算类型分为SQL语句、Mongo管道语句、基础函数,case when要自己写sql语句。 https://www.yonghongtech.com/rea ... aculategrammar.html
计算列多个条件参考语法
if <expr> then <then> [elseif <expr2> then <then2>...] [else <else>] end
测试一系列表达式,同时为第一个为 true 的 <expr> 返回 <then> 值。
例如:
if (col['sales'] > 10000) then "高利润" elseif (col['sales'] < 10000 and col['sales'] > 1500) then "保持成本" else "亏本" end