简体   繁体   English

从MySQL表返回每个唯一用户以及每个用户的行数计数

[英]Returning each unique user from a MySQL table and also the count of the number of rows for each user

I am using the following MySQL query to generate a table for users in a database. 我正在使用以下MySQL查询来为数据库中的用户生成一个表。 The query is designed to just return one row for each user, even though there are multiple rows for each user. 该查询旨在为每个用户只返回一行,即使每个用户有多个行也是如此。 This works fine, however I also need to calculate the number of unique entries for each user, to enter into the table where it states HERE . 这可以正常工作,但是我还需要计算每个用户的唯一条目数,以进入表中显示HERE的表。 Do I need to use another query to return the count for all entries, and if so how do I integrate this with the code I already have? 我是否需要使用另一个查询来返回所有条目的计数,如果是的话,如何将其与已有的代码集成在一起?

$query="SELECT from_user, COUNT(*) AS num FROM tracks GROUP BY from_user ORDER BY COUNT(*) DESC";
$result=mysql_query($query) or die(mysql_error());

        while ($row = mysql_fetch_array($result)) {
        $user = $row['from_user'];

        echo "<tr>";
        echo "<td>".$user."</td>";
        echo "<td>uploads (**HERE**)</td>";
        echo "<td>favourites (count)</td>";
        echo "</tr>";
        }
?>
</table>

Because you've already created the custom field 'num', you can use that to get the count! 因为您已经创建了自定义字段'num',所以可以使用它来获取计数!

Add the following line after user = ... user = ...之后添加以下行

$count = $row['num'];

Then you can 那么你也能

echo "<td>uploads ($count)</td>";

It miss your table stucture to know your field name, but, if i well understand your question you can use count + distinct in mysql. 它想念你的表stucture知道你的字段名,但是,如果我也明白你的问题,你可以使用count + 不同的 MySQL中。 You can check this answer too. 您也可以检查此答案

SELECT DISTINCT(from_user) AS user, 
COUNT(from_user) AS num 
FROM tracks 
GROUP BY from_user 
ORDER BY num DESC";

For the second problem you can doing a second query, or do a join tracks . 对于第二个问题,您可以进行第二个查询,或进行连接跟踪。

I think, in your case it's easier to you to do se second query inside the loop to get all detail from 'user' result. 我认为,就您而言,您更容易在循环内进行第二次查询以从“用户”结果中获取所有详细信息。

$query1="SELECT DISTINCT(from_user), COUNT(*) AS num 
FROM tracks 
GROUP BY from_user 
ORDER BY COUNT(*) DESC";

$query2="SELECT * FROM tracks";

$result1=mysql_query($query1) or die(mysql_error());
$result2=mysql_query($query2) or die(mysql_error());

$user_array = array();

while ($row = mysql_fetch_array($result1)) {

    $user = $row['from_user'];
    $num = $row['num'];

    $uploads_array = array();

    while ($sub_row = mysql_fetch_array($result2)) { 
      if( $sub_row['from_user'] == $user ) {
            //for example only due to the unknown structure of your table
            $uploads_array[] = array( 
                "file_name" => $sub_row['file_name'], 
                "file_url" => $sub_row['file_url'] 
            ); 
      }
    }

    $user_array[] = array( 
        "name" => $user, 
        "num_entry" => $num, 
        "actions" => $uploads_array
    );

}

// now the table with all data is stuctured and you can parse it

foreach($user_array as $result) {
    $upload_html_link_arr = array();
    $user = $result['name'];
    $num_entry = $result['num_entry'];
    $all_actions_from_user_array = $result['actions'];

    foreach($all_actions_from_user_array as $upload) { 
        $upload_html_link_arr[] = sprintf('<a href="%s">%s</a>', $upload["file_url"],$upload["file_name"]);
    }

    $upload_html_link = implode(', ',$upload_html_link_arr);

    $full_row = sprintf("<tr><td>%s</td><td>uploads : %s</td><td>favourites (%d)</td></tr>", $user, $upload_html_link, $num_entry);

    // now just echo the full row or store it to a table for the final echo.
    echo $full_row;
}

I hope this help, mike 我希望能有所帮助,迈克

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM