MS Access 中 NZ 函数的 ADO 等价物?

ADO equivalent for NZ function in MS Access?

我有以下命令对象:

ADODB::_CommandPtr pCmd("ADODB.Command");

pCmd->ActiveConnection = pConn;
pCmd->CommandType = ADODB::adCmdText;
pCmd->CommandText = L" select ID, NZ(PaymentAmount, 0) from Contracts;";

ADODB::_RecordsetPtr pRS = pCmd->Execute(NULL, NULL, ADODB::adCmdText);

当我运行它的时候,报错说NZ函数不存在

通过我自己的研究,我发现我不能在 ADO 查询中使用 NZ

问题:

有ADO等同于这个函数吗?

使用 IIf 表达式产生与 Nz 相同的结果。

select ID, IIf(PaymentAmount Is Null, 0, PaymentAmount) As nz_PaymentAmount
from Contracts;

使用IIF together with ISNULL函数。

select ID, IIf(ISNULL(PaymentAmount), 0, PaymentAmount) As nz_PaymentAmount
from Contracts;