my $sth = $dbh->prepare("SELECT AVG(col2), AVG(col3) FROM mydata.csv"); $sth->execute(); my @avgs = $sth->fetchrow_array(); my $avg = $avgs[0] + $avgs[1];