http://www.perlmonks.org?node_id=498715


in reply to Too much SQL not enough perl

A realistic way of doing this efficiently in Perl is with List::Util.

use strict; use warnings; use List::Util qw(first); my @questions = ( 'a' .. 'z' ); my $column = 'q'; if ( first { $column eq $_ } @questions ) { print "'$column' is in <@questions>\n"; }