For an InnoDB storage is it better to count the total number of records with
`select * from tbl where pk = 1`
<em>retrieve mysql_num_rows</em>
or with
`select count(*) as total from tbl where pk = 1`
*fetch the array and retrieve the "total" value*
?