Hello,
I'm trying to filter out for two values. In SQL this would be where prodtable.fieldname not in ('hold', 'delete')
I have the two lines below, but it acts as an "or" operator. I need the two lines only using an "and" operator
Thanks in advance for any help you can provide
qbdsProdTable.addRange(fieldNum(ProdTable,ProdPoolId)).value(queryNotValue(BOT_ProdPoolID::Hold ));
qbdsProdTable.addRange(fieldNum(ProdTable,ProdPoolId)).value(queryNotValue(BOT_ProdPoolID::Delete ));
*This post is locked for comments
I have the same question (0)