1
select top 7 item_name, item_reserve, count(bid_id) as bid_count, 
max(bid_amount) as highest_bid, 
item_reserve / max(bid_amount) * 100 as pct_increase
from vb_items
join vb_bids on item_id=bid_item_id
where item_sold = 0 
group by item_name, item_reserve
order by bid_count desc

item_reserve から maximum_bid までの増加率を知りたいです。これは多かれ少なかれ正しいと思いますが、数学は私の得意分野ではありません。

4

1 に答える 1

0

item_reserve から maximum_bid までの増加率は次のようになります。

( (highest_bid / item_reserve) - 1 ) * 100.

たとえば、それぞれ 100 と 110 の場合、

((110/100)-1)*100 = (1.1 - 1) * 100 = a 10% increase.
于 2013-10-04T17:24:56.423 に答える