in reply to Joining two files on common field
use DBI; my $dbh=DBI->connect('dbi:CSV(RaiseError=1):'); my $results = $dbh->selectall_arrayref(" SELECT * FROM file1 NATURAL JOIN file2 ");
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Joining two files on common field
by ch1 (Novice) on Sep 22, 2005 at 22:54 UTC | |
by jZed (Prior) on Sep 22, 2005 at 23:00 UTC | |
by ch1 (Novice) on Sep 23, 2005 at 04:53 UTC | |
by jZed (Prior) on Sep 23, 2005 at 05:10 UTC | |
by Anonymous Monk on Sep 23, 2005 at 20:25 UTC | |
by ikegami (Patriarch) on Sep 23, 2005 at 17:35 UTC |