my $query = $db->prepare("select code, username, userid from transactions");
$query->execute();
####
my %code = map { $_ => [] } 0 .. 13;
####
while (my $r = $qeury->fetchrow_hashref()) {
####
my $c = $$r{code};
push @{$code{$c}}, $r;
}
# For each code $c, $code{$c} is now an arrayref which
# contains the relevant records (as hashrefs). The
# number of elements in the array equals the number
# of occurances. Now, for the second part...
####
my %topfive;
for my $c (keys %code) {
my %user;
for my $row (@{$code{$c}}) {
# Note: this assumes that the userid field
# is unique to each user.
$user{$$row{userid}}{count}++;
$user{$$row{userid}}{name} = $$row{username};
}
$topfive{$c} = [(sort {
$$b[2] <=> $$a[2]
} map {
[$_, $user{$_}{name}, $user{$_}{count}]
} keys %user)[0 .. 4]];
}