in reply to Re: DBI:CSV SQL parsing problem
in thread DBI:CSV SQL parsing problem

Thanks ikegami
This might be an option. I have tried
SELECT AVG(col2) + AVG(col3)...
Without success. If I use
my $avg = $avgs[0] + $avgs[1];
I'll first have to parse the SELECT statement for +,-,* and / and replace with commas and do the operation afterwards, but it certainly seems doable.