Help for this page
my $ref = $sth->fetchall_arrayref(); my $second_name = $ref->[1]->[1];
my $ref = $sth->fetchall_arrayref(); foreach my $inner (@$ref){ print join ("\t", @$inner), "\n"; }