How to use column several times in volume hash in Qore SqlUtil?
SQL example: colname in (...) and colname not in (...)
Here where the hash will look like this:
hash sh = ('where': ( 'colname': op_in(...), 'colname': op_not(op_in(...)), ));
Of course, the same key cannot be used more than once in a hash.
source share