Help for this page

Select Code to Download


  1. or download this
    $sql = "select colnm from tblnm where colmn in (?,?,?);
    $st = $dbh->prepare($sql);
    ...
    
    # Select where colmn in (4, 5, 6)
    $st->execute(4, 5, 6);