- or download this
%searchConditions = {
'table1.variable' => {'<', '(integer value) - table2.variable'}
};
- or download this
... table1.variable - table2.variable < (integer value 1) AND
table1.variable - table3.variable < (integer value 2)...
- or download this
%searchConditions = {
...
'table1.variable' => {'<', '(integer value 2) - table3.variable'}
};
- or download this
%searchConditions = {
'table1.variable' => {'-and' => [{'<', '(integer value 1) - table2.var
+iable'}, {'<', '(integer value 2) - table3.variable'}]}
};