I have a problem with using SELECT statements with DBD::CSV.
I have to join information from 3 tables and insert into one big
table.
I can't seem to find any information on how to create a select
statement that will enable me to select fields from more than one table
the below example would work in a normal sql but not in CSV
eg. $statement = $dbh->prepare("SELECT * FROM tbl1, tbl2");
$statement->execute();
please help many thanks