4

MySQL結果セットに追加のカウンターを含めることはできますか?次のクエリがあり、2つの列が返されます。結果セットの各行の行を示す追加の列(結果のみ)が必要です。

select orderid, round(sum(unitprice * quantity),2) as value
from order_details
group by orderid
order by 2 desc
limit 10

次のようなものが必要です。

10865 1 17250.00
11030 2 16321.90
10981 3 15810.00
10372 4 12281.20
10424 5 11493.20
4

3 に答える 3

10

これを試して:

SET @counter = 0; 
Select sub.*
FROM
(
    select orderid, (@counter := @counter +1) as counter,
      round(sum(unitprice * quantity),2) as value
    from order_details
    group by orderid
) sub
order by 2 desc
于 2012-10-07T13:55:32.457 に答える
5

フォローしてみてください

SET @counter = 0;
select orderid, (@counter:= @counter + 1) as counter, round(sum(unitprice * quantity),2) as value
from order_details
group by orderid
order by 3 desc
limit 10

それが役に立てば幸い...

于 2012-10-07T13:55:47.643 に答える
0

2つの答えに基づいて、私は次のことを得ることができました。

SET @counter = 0; 

Select sub.orderid,sub.value,(@counter := @counter +1) as counter
FROM
(
    select orderid, 
      round(sum(unitprice * quantity),2) as value
    from order_details
    group by orderid
) sub
order by 2 desc
limit 10

元の回答は、内部クエリからのIDを示しており、大きなギャップのある大きなintになりました。変更を使用すると、pgfplotsLaTeXプロットに必要な「1からx」の範囲だけが得られます。

于 2012-10-07T20:16:39.703 に答える