in reply to Re^3: SQL LIKE and Binding Variables
in thread SQL LIKE and Binding Variables

Oh, wait ... got it.

my $sql = q{SELECT * FROM Songs WHERE Songs.Artist LIKE '%'||} .join(q +{||'%' OR Songs.Artist LIKE '%'||},map {"?"} @vals).q{||'%'};

Thanks to everyone for you patience and suggestions!