- or download this
+-----+------------+
| id | somedata |
...
+-----+------------+
| 5 | eeeeeeee |
+-----+------------+
- 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]";
}
- 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]
}