Help for this page

Select Code to Download


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