0
我正在使用下面的查詢從mysql數據庫中獲取數據。MySQL查詢 - 限制函數
select component,count(component) as Quantity from mfgGroup where
period between '2013-01-01' and '2013-12-31'
因爲我得到了幾乎100多行。
現在我想只顯示前25 components.so我修改查詢,如下
select component,count(component) as Quantity from mfgGroup where
period between '2013-01-01' and '2013-12-31' limit 0,25
但我什麼,我需要的是顯示排名前25位的項目和其他組件應該被標記爲'其他「的數量。
在結果集中如下所示。
Item1 123
Item2 112
....
....
Item25 24
Others 156
什麼是「其他」行中的'156'?它是其他行的數量嗎? – Barmar
是的,組件編號的其餘部分。 – CarlJohn