my $pop = qq(SELECT cnt FROM popular WHERE name="testName"); my $sth = $dbh->prepare($pop); $sth->execute() or die $dbh->errstr; my @return; while (@return = $sth->fetchrow_array()) { $count = $return[1]; } print "our return count is $count";