dplase3140 2013-11-18 11:49
浏览 8
已采纳

回响每组的行数

I have a mysql query in which I group each post by the date is was posted. I want to be able to echo the amount of posts that happened each day, know a way?

Here is what I've written so far which does post a new <div> for each day it was posted.

$trendQuery = "
SELECT DATE(timestamp) AS ForDate,
    COUNT(*) AS NumPosts
 FROM   trends
 WHERE `trend` = '" . $_GET['graph'] . "'
 GROUP BY DATE(timestamp)
 ORDER BY ForDate
";

$result = mysql_query($trendQuery);
    while ($row = mysql_fetch_array($result)) {
        echo'
        <div>
            <p>Here is where I want to say how many posts that happened!</p>
    </div>
    ';
}
  • 写回答

2条回答 默认 最新

  • doushenken2833 2013-11-18 11:52
    关注

    You have your query pretty much set up. To echo the results, you simply need to refer the columns with the alias name, in your case ForDate and NumPosts

    $trendQuery = "
    SELECT timestamp AS ForDate,
        COUNT(*) AS NumPosts
     FROM   trends
     WHERE `trend` = '" . $_GET['graph'] . "'
     GROUP BY timestamp
     ORDER BY ForDate
    ";
    
    $result = mysql_query($trendQuery);
        while ($row = mysql_fetch_array($result)) {
            echo'
            <div>
                Date: '.$row['ForDate'].' ---- Number of Posts: '.$row['NumPosts'].'<br />
        </div>
        ';
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line