in reply to treat each result line individually in SELECT statement Perl-Mysql
Something like this?
my $first = 1; while((my $ref = $sth->fetchrow_arrayref)) { if($first) { $first = 0; next; } print Dumper($ref), "\n"; } [download]