Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare("select COLUMN_1 from table where COLUMN_2 < 2500
    +");
    $sth->execute();
    ...
    # do some processing on the column 1 value here
    
    }
    
  2. or download this
    
    $sth = $dbh->prepare("select COLUMN_1 from table where COLUMN_2 betwee
    +n ? and ?");
    ...
    
    }