- or download this
#!/usr/bin/perl
...
$sth->finish();
$dbh->disconnect();
- or download this
my $sth = $dbh->prepare("SELECT AVG(col3) FROM mydata.csv");
- or download this
my $sth = $dbh->prepare("SELECT (col2 + col3) FROM mydata.csv");
- or download this
my $sth = $dbh->prepare("SELECT AVG(col2 + col3) FROM mydata.csv");
- or download this
col1,col2,col3,col4
...
481,435,225,0.6