Way oversimplified example:
# Get Some data
$query = $db->prepare(qq{
select * from my_table where id = "Some Value"
});
$query->execute;
# Iterate through the results
if ( *THE QUERY HAS RETURNED A RESULT* ) {
print "Here is list of IDs ";
while ($query_data = $query->fetchrow_hashref) {
print "$query_data->{id}";
}
};
Looking for the code for “THE QUERY HAS RETURNED A RESULT” up there. I’d like to avoid using count(*) in my SQL if possible, since that will require a “group by”.
Alternative:
Simpler code at the expense of memory: