my $studentInfo = $sth_queryID->fetchall_arrayref; #### for my $studentInfo_row (@{$studentInfo}) { next unless $studentInfo_row->[0] % 2; ... } #### foreach my $studentInfo_row ( grep { $_->[0] % 2 } @{$studentInfo}) { ... }
## for my $studentInfo_row (@{$studentInfo}) { next unless $studentInfo_row->[0] % 2; ... } ##
## foreach my $studentInfo_row ( grep { $_->[0] % 2 } @{$studentInfo}) { ... }