mysql獲得查詢結果的同時統計查詢結果的數目

作一些數據庫查詢,不只但願獲得要查詢的結果,還但願方便地統計一下查詢結果中有多少條記錄。我一般的作法是: $q = "select * from $fromTable where $where limit $start,$pageSize"; $r = mysql_query($q); $q = "select count(*) from $fromTable where $where"; $cn
相關文章
相關標籤/搜索