是否有与SOQL中的 excel countif 函数 ( http://www.techonthenet.com/excel/formulas/countif.php ) 等效的东西?
这在 group by 查询中尤为重要。
在 oracle 中,我会将 case 函数与 case 函数一起使用
sum(
case
when (condition is true)
then 1 else 0
end
)
我如何在 Salesforce SOQL 中执行相同的操作?
谢谢,
大卫