Help for this page
select id, name from fileone where id in (select id from filetwo)
#! /usr/bin/perl use strict; ... $dbh->{csv_tables}{f2}{col_names} = [qw(id)]; my $d = $dbh->selectall_arrayref('select id, name from f1 where id in +( select id from f2 )', {});