开发者

Counting number of rows in MySQL table using PDO

Need to count the number of rows for each category in a MySQL table using PDO. For example, I need to have the number of entries fo开发者_开发问答r category 1, category 2, etc. If possible, I would like to do this without having to write out an SQL statement for each category.

Thanks!


The SQL you need is something like:

SELECT category_name, COUNT(*) AS total FROM category_table
GROUP BY category_name

This will return a result set that has one row for each category. Each row has two columns: the category name and the total number of records with that category name. The same technique works for category id's or any other key you may want to use.

You would use it this way:

$sql = 'SELECT category_name, COUNT(*) AS total FROM category_table '.
       'GROUP BY category_name';

$db = new PDO($database, $user, $password);
$results = $db->query($sql)->fetchAll(PDO::FETCH_ASSOC);

// $results is now an array with the query results

Edit: added sample PHP code.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜