- or download this
SELECT monthKey, group, person, stat
FROM areas a, stats s
...
ORDER BY
monthKey, group, person, stat
;
- or download this
SELECT monthKey, group, person, stat
FROM areas a, stats s
...
ORDER BY
monthKey, group, person, stat
;
- or download this
my $sth = $dbh->prepare($query);
$sth->execute();
...
$sth->finish();
$dbh->disconnect();