如何从db中获取注释数?

时间:2011-08-20 18:43:45

标签: java php mysql echo

我是abeginner,我需要完整的代码来获取我的数据库中的评论数量(例如在Facebook中:不是评论,而是每篇文章的评论总数[或在我的情况下每个“列表”])在div中标签或其他东西。

以下是我的数据库的屏幕截图:

enter image description here

2 个答案:

答案 0 :(得分:1)

select listing_id,count(*) as total
from comments
group by listing_id

答案 1 :(得分:0)

$sql = "SELECT * FROM comments";
$stmt = $mysqli->prepare($sql);
$stmt->execute();
$stmt->store_result();
$checker = $stmt->num_rows;
$stmt->fetch();
$stmt->close();

//Checker has the number of rows 

echo $checker;

它的功能num_rows在这里你可以阅读更多

num_rows mysqli

num_rows mysql

编辑:如果您只想要一篇文章的评论,那么您可以像

一样进行SQL
$sql = "SELECT * FROM comments WHERE articleid = ?";