Help for this page

Select Code to Download


  1. or download this
    +-----+------------+
    | id  |  somedata  |  
    ...
    +-----+------------+
    |  5  |  eeeeeeee  |  
    +-----+------------+
    
  2. or download this
    my $stmt = "SELECT somedata FROM table WHERE id = $ids_to_match[0]";
    
    for my $i ( 1 .. $#ids_to_match ) {
       $stmt .= " OR id = $ids_to_match[$i]";
    }
    
  3. or download this
    for my $i ( 0 .. $#ids_to_match ) {
       my $stmt = "SELECT somedata FROM table WHERE id = $ids_to_match[$i]
    +";
       [execute, fetch, push into AoH]
    }