5
如何在Qore的SqlUtil的where哈希中多次使用列?如何在Qore的SqlUtil中的where哈希中多次使用同一列
例如,SQL:colname in (...) and colname not in (...)
這裏一個那裏哈希看起來像:
hash sh = ('where': (
'colname': op_in(...),
'colname': op_not(op_in(...)),
));
當然相同的密鑰不能在哈希使用一次以上。