Help for this page

Select Code to Download


  1. or download this
    use SQL::Abstract;
    
    my $sql = SQL::Abstract->new;
    ...
    my($stmt, @bind)  = $sql->where(\@where);
    
    print "$stmt BOUND WITH @bind\n";
    
  2. or download this
    WHERE ( ( city = ? AND sale = ? ) OR ( city = ? AND rent = ? ) )
    BOUND WITH Jerusalem 1 Jerusalem 1