Help for this page

Select Code to Download


  1. or download this
    
    my $sql = 'SELECT something FROM atable WHERE data in (?);';
    my $sth = $dbh->prepare($sql);
    my $rv = $sth->execute($data);
    
  2. or download this
    my $data = "1,2,3,4,5,6";