Asking anyone who might know a little bit about the details of both mysql and php's implementations...
Is there a significant difference from running a
-Rob
Is there a significant difference from running a
Code:
$result = mysql_query("SELECT count(somecolumn) WHERE 1")
$row = mysql_fetch...
echo $row[0];
as compared to
$result = mysql_query("SELECT somecolumn) WHERE 1");
echo mysql_num_rows($result);
-Rob