- or download this
SELECT
group, somedata
...
table
ORDER BY
group, somedata
- or download this
my $lastgroup = undef;
while ( my $row = $sth->fetchrow_arrayref() ) {
...
}
print( " " . $row->[1] . "\n" );
}
- or download this
my $lastgroup = undef;
while ( my $row = $sth->fetchrow_arrayref() ) {
...
}
print( " " . $row->[1] . "\n" );
}