如何选择一些具有特定值的行并在mysql中对其进行排序

时间:2019-06-23 11:44:43

标签: php mysql sorting

我有一个包含一些列和行的MYSQL数据库。 我想选择一些具有相同值的行并对它们求和,然后对它们进行排序。

例如:

Id    data
1     5
2     12 
4     42
2     2
1     3
1     8
4     2

类似: 数据:(16 id:1),(数据:14 id:2),(数据:44 id:4)

为此,我尝试了以下代码:

$sql = "SELECT id, SUM(data) AS value_sum FROM table GROUP BY id ORDER BY value_sum DESC LIMIT 30";
$result = mysqli_query($conn, $sql);

    $ids = "";
    $datas = "";

    if (mysqli_num_rows($result) > 0) {
        while ($row = mysqli_fetch_assoc($result))
        {
            $ids .= $row['p_id'] . '^';
            $datas.= $row['value_sum'] . '^';
        }
    }

它工作正常,我可以得到按value_sum排序的行总和。

但是我的问题是ID未排序,我也想获得ID排序但结果未排序。 我的意思是在结果中我不知道我可以得到value_sum的真实ID。

更多解释,我想要这个结果:

(id 4:44),(id 1:16),(id 2:14)

我该怎么做?

1 个答案:

答案 0 :(得分:1)

您可以使用sum(),按sum和id分组和排序

select  id, sum(data) , concat('(id ',id, ':', sum(data) , ')')
from my_table  
group by  id   
order by sum(data) desc, id asc

select  id, sum(data) 
from my_table  
group by  id  
order by id asc, sum(data) desc

,如果需要在同一行上

select group_concat(my_col) 
from  (
select  id, sum(data) , concat('(id ',id, ':', sum(data) , ')') my_col
from my_table  
group by  id   
order by sum(data) desc, id asc ) t