Help for this page

Select Code to Download


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