我在下面有一个查询,需要将第二个和第三个 .compare 条件与“AND”运算符结合起来
var query = ii.join(InvoiceItem#PolicyPeriod)
.compare(PolicyPeriod#Plan, Relop.NotEquals, xyzPlan)
.compareIn(PolicyPeriod#ProdType, {Prod.TC_FREE, Prod.TC_UNIQ})
.compareIn(PolicyPeriod#Elig,{OffElig.TC_Yes})
第二个 compareIn 语句在 SQL 中应该如下所示,但不知道如何使用 AND 运算符将两个变量组合在一个比较中。
if ( prodtype in ('FREE','UNIQ') and Elig = 'YES')
Any Advice!!