標題說明了一切。我有下面的代碼:mysql COUNT(*)總是返回8
public function getRows($table) {
$result = mysql_query("SELECT COUNT(*) FROM `".$table."`");
if (! $result) {
throw new Exception(mysql_error().". Query was:\n\n".$query."\n\nError number: ".mysql_errno() . ".Table = ".$table);
}
return $result;
}
似乎應該是有史以來最簡單的功能,但結果總是返回8.
任何想法?
感謝, 喬希
有8條記錄在你的桌子會更好? – Tdelang
手冊中有無數的使用示例。爲什麼你想猜測mysql _...()函數是如何工作的? –
@Tdelang不錯的一個:-) – strauberry