如何从db中获取注释数?

时间:2011-08-19 15:42:06

标签: php mysql phpmyadmin

我想从我的数据库中获取评论的数量(例如在Facebook中:不是评论,而是每篇文章的评论总数[或在我的情况下每个“列表”])。这是我的数据库的屏幕截图:

http://i54.tinypic.com/2hf7829.png

如何获得评论数量?

2 个答案:

答案 0 :(得分:2)

select listing_id, count(*) 
from table
group by listing_id

答案 1 :(得分:0)

您选择数据库的count(*),这将为您提供所需的行数。

SELECT count(*) as count FROM `comment_table` GROUP BY `listing_id`;